Skip to main content

GetItem

Returns a format condition by its index.

Syntax

expression.GetItem(index);

expression - A variable that represents a ApiFormatConditions class.

Parameters

NameRequired/OptionalData typeDefaultDescription
indexRequirednumberThe index of the format condition (1-based).

Returns

ApiFormatCondition | null

Example

Retrieve a single formatting rule from a range by its position in the list in a spreadsheet.

// How do I access one particular highlight rule out of several applied to a range in a spreadsheet?

// Pick out an individual color condition by its order to inspect or modify it in a spreadsheet.

let worksheet = Api.GetActiveSheet();

worksheet.GetRange("A1").SetValue("Sample Data");
worksheet.GetRange("A2").SetValue(10);
worksheet.GetRange("A3").SetValue(45);
worksheet.GetRange("A4").SetValue(75);
worksheet.GetRange("A5").SetValue(25);
worksheet.GetRange("A6").SetValue(90);

let dataRange = worksheet.GetRange("A2:A6");

let formatConditions = dataRange.GetFormatConditions();

formatConditions.AddDatabar();

let firstRule = formatConditions.GetItem(1);

worksheet.GetRange("B1").SetValue("Rule found: " + (firstRule !== null));