Excel.Interfaces.WorksheetCustomPropertyLoadOptions interface
Represents a worksheet-level custom property.
Remarks
Properties
$all | Specifying |
key | Gets the key of the custom property. Custom property keys are case-insensitive. The key is limited to 255 characters (larger values will cause an |
value | Gets or sets the value of the custom property. |
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
Gets the key of the custom property. Custom property keys are case-insensitive. The key is limited to 255 characters (larger values will cause an InvalidArgument
error to be thrown.)
key?: boolean;
Property Value
boolean
Remarks
value
Gets or sets the value of the custom property.
value?: boolean;
Property Value
boolean
Remarks
Office Add-ins