Excel.Interfaces.SlicerCollectionLoadOptions interface
Represents a collection of all the slicer objects in the workbook or a worksheet.
Remarks
Properties
$all | Specifying |
caption | For EACH ITEM in the collection: Represents the caption of the slicer. |
height | For EACH ITEM in the collection: Represents the height, in points, of the slicer. Throws an |
id | For EACH ITEM in the collection: Represents the unique ID of the slicer. |
is |
For EACH ITEM in the collection: Value is |
left | For EACH ITEM in the collection: Represents the distance, in points, from the left side of the slicer to the left of the worksheet. Throws an |
name | For EACH ITEM in the collection: Represents the name of the slicer. |
sort |
For EACH ITEM in the collection: Represents the sort order of the items in the slicer. Possible values are: "DataSourceOrder", "Ascending", "Descending". |
style | For EACH ITEM in the collection: Constant value that represents the slicer style. Possible values are: "SlicerStyleLight1" through "SlicerStyleLight6", "TableStyleOther1" through "TableStyleOther2", "SlicerStyleDark1" through "SlicerStyleDark6". A custom user-defined style present in the workbook can also be specified. |
top | For EACH ITEM in the collection: Represents the distance, in points, from the top edge of the slicer to the top of the worksheet. Throws an |
width | For EACH ITEM in the collection: Represents the width, in points, of the slicer. Throws an |
worksheet | For EACH ITEM in the collection: Represents the worksheet containing the slicer. |
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
caption
For EACH ITEM in the collection: Represents the caption of the slicer.
caption?: boolean;
Property Value
boolean
Remarks
height
For EACH ITEM in the collection: Represents the height, in points, of the slicer. Throws an InvalidArgument
exception when set with a negative value or zero as an input.
height?: boolean;
Property Value
boolean
Remarks
id
For EACH ITEM in the collection: Represents the unique ID of the slicer.
id?: boolean;
Property Value
boolean
Remarks
isFilterCleared
For EACH ITEM in the collection: Value is true
if all filters currently applied on the slicer are cleared.
isFilterCleared?: boolean;
Property Value
boolean
Remarks
left
For EACH ITEM in the collection: Represents the distance, in points, from the left side of the slicer to the left of the worksheet. Throws an InvalidArgument
error when set with a negative value as an input.
left?: boolean;
Property Value
boolean
Remarks
name
For EACH ITEM in the collection: Represents the name of the slicer.
name?: boolean;
Property Value
boolean
Remarks
sortBy
For EACH ITEM in the collection: Represents the sort order of the items in the slicer. Possible values are: "DataSourceOrder", "Ascending", "Descending".
sortBy?: boolean;
Property Value
boolean
Remarks
style
For EACH ITEM in the collection: Constant value that represents the slicer style. Possible values are: "SlicerStyleLight1" through "SlicerStyleLight6", "TableStyleOther1" through "TableStyleOther2", "SlicerStyleDark1" through "SlicerStyleDark6". A custom user-defined style present in the workbook can also be specified.
style?: boolean;
Property Value
boolean
Remarks
top
For EACH ITEM in the collection: Represents the distance, in points, from the top edge of the slicer to the top of the worksheet. Throws an InvalidArgument
error when set with a negative value as an input.
top?: boolean;
Property Value
boolean
Remarks
width
For EACH ITEM in the collection: Represents the width, in points, of the slicer. Throws an InvalidArgument
error when set with a negative value or zero as an input.
width?: boolean;
Property Value
boolean
Remarks
worksheet
For EACH ITEM in the collection: Represents the worksheet containing the slicer.
worksheet?: Excel.Interfaces.WorksheetLoadOptions;
Property Value
Remarks
Office Add-ins