Excel.Interfaces.CustomPropertyCollectionLoadOptions interface
Contains the collection of custom properties.
Remarks
Properties
$all | Specifying |
key | For EACH ITEM in the collection: The key of the custom property. The key is limited to 255 characters outside of Excel on the web (larger keys are automatically trimmed to 255 characters on other platforms). |
type | For EACH ITEM in the collection: The type of the value used for the custom property. |
value | For EACH ITEM in the collection: The value of the custom property. The value is limited to 255 characters outside of Excel on the web (larger values are automatically trimmed to 255 characters on other platforms). |
Property Details
$all
Specifying $all
for the load options loads all the scalar properties (such as Range.address
) but not the navigational properties (such as Range.format.fill.color
).
$all?: boolean;
Property Value
boolean
key
For EACH ITEM in the collection: The key of the custom property. The key is limited to 255 characters outside of Excel on the web (larger keys are automatically trimmed to 255 characters on other platforms).
key?: boolean;
Property Value
boolean
Remarks
type
For EACH ITEM in the collection: The type of the value used for the custom property.
type?: boolean;
Property Value
boolean
Remarks
value
For EACH ITEM in the collection: The value of the custom property. The value is limited to 255 characters outside of Excel on the web (larger values are automatically trimmed to 255 characters on other platforms).
value?: boolean;
Property Value
boolean
Remarks
Office Add-ins