[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IAboveAverage.Type

Type Property

Type

Gets the type of this conditional format.

For an IAboveAverage rule, this property returns AboveAverageCondition.

Declaration
FormatConditionType Type { get; }
ReadOnly Property Type As FormatConditionType
Examples
worksheet.Range["A1:A5"].Value = new object[,] {{10}, {20}, {30}, {40}, {50}};
IAboveAverage format = worksheet.Range["A1:A5"].FormatConditions.AddAboveAverage();
format.Interior.Color = Color.Yellow;
FormatConditionType type = format.Type;