IconSet

IconSet class

Describe the IconSet conditional formatting rule. This conditional formatting rule applies icons to cells according to their values.

class IconSet;

Example

const { Workbook, CellArea, FormatConditionType, IconSetType } = require("aspose.cells.node");

//Instantiating a Workbook object
var workbook = new Workbook();
var sheet = workbook.getWorksheets().get(0);

//Adds an empty conditional formatting
var index = sheet.getConditionalFormattings().add();
var fcs = sheet.getConditionalFormattings().get(index);
//Sets the conditional format range.
var ca = new CellArea();
ca.startRow = 0;
ca.endRow = 2;
ca.startColumn = 0;
ca.endColumn = 0;
fcs.addArea(ca);

//Adds condition.
var idx = fcs.addCondition(FormatConditionType.IconSet);

fcs.addArea(ca);
var cond = fcs.get(idx);
//Get Icon Set
var iconSet = cond.getIconSet();
//Set Icon Type
iconSet.setType(IconSetType.Arrows3);

//Put Cell Values
var cell1 = sheet.getCells().get("A1");
cell1.putValue(10);
var cell2 = sheet.getCells().get("A2");
cell2.putValue(120);
var cell3 = sheet.getCells().get("A3");
cell3.putValue(260);

//Saving the Excel file
workbook.save("output/IconSet.xlsx");

Methods

MethodDescription
getCfIcons()Get theConditionalFormattingIcon from the collection
getCfvos()Get the CFValueObjects instance.
getType()Get or Set the icon set type to display. Setting the type will auto check if the current Cfvos’s count is accord with the new type. If not accord, old Cfvos will be cleaned and default Cfvos will be added.
setType(IconSetType)Get or Set the icon set type to display. Setting the type will auto check if the current Cfvos’s count is accord with the new type. If not accord, old Cfvos will be cleaned and default Cfvos will be added.
isCustom()Indicates whether the icon set is custom. Default value is false.
getShowValue()Get or set the flag indicating whether to show the values of the cells on which this icon set is applied. Default value is true.
setShowValue(boolean)Get or set the flag indicating whether to show the values of the cells on which this icon set is applied. Default value is true.
getReverse()Get or set the flag indicating whether to reverses the default order of the icons in this icon set. Default value is false.
setReverse(boolean)Get or set the flag indicating whether to reverses the default order of the icons in this icon set. Default value is false.
isNull()Checks whether the implementation object is null.

getCfIcons()

Get theConditionalFormattingIcon from the collection

getCfIcons() : ConditionalFormattingIconCollection;

Returns

ConditionalFormattingIconCollection

getCfvos()

Get the CFValueObjects instance.

getCfvos() : ConditionalFormattingValueCollection;

Returns

ConditionalFormattingValueCollection

getType()

Get or Set the icon set type to display. Setting the type will auto check if the current Cfvos’s count is accord with the new type. If not accord, old Cfvos will be cleaned and default Cfvos will be added.

getType() : IconSetType;

Returns

IconSetType

setType(IconSetType)

Get or Set the icon set type to display. Setting the type will auto check if the current Cfvos’s count is accord with the new type. If not accord, old Cfvos will be cleaned and default Cfvos will be added.

setType(value: IconSetType) : void;

Parameters:

ParameterTypeDescription
valueIconSetTypeThe value to set.

isCustom()

Indicates whether the icon set is custom. Default value is false.

isCustom() : boolean;

getShowValue()

Get or set the flag indicating whether to show the values of the cells on which this icon set is applied. Default value is true.

getShowValue() : boolean;

setShowValue(boolean)

Get or set the flag indicating whether to show the values of the cells on which this icon set is applied. Default value is true.

setShowValue(value: boolean) : void;

Parameters:

ParameterTypeDescription
valuebooleanThe value to set.

getReverse()

Get or set the flag indicating whether to reverses the default order of the icons in this icon set. Default value is false.

getReverse() : boolean;

setReverse(boolean)

Get or set the flag indicating whether to reverses the default order of the icons in this icon set. Default value is false.

setReverse(value: boolean) : void;

Parameters:

ParameterTypeDescription
valuebooleanThe value to set.

isNull()

Checks whether the implementation object is null.

isNull() : boolean;