Excel.Interfaces.CustomPropertyLoadOptions interface
Represents a custom property.
Remarks
Properties
$all | Specifying |
key | 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 | The type of the value used for the custom property. |
value | 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
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
The type of the value used for the custom property.
type?: boolean;
Property Value
boolean
Remarks
value
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