[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IDataBar.Type

Type Property

Type

Gets the type of this conditional format.

For a data bar conditional formatting rule, this property returns the corresponding FormatConditionType value, such as Databar.

Declaration
FormatConditionType Type { get; }
ReadOnly Property Type As FormatConditionType
Examples
worksheet.Range["A1:A5"].Value = new object[,] {{10}, {30}, {20}, {40}, {25}};
IDataBar dataBar = worksheet.Range["A1:A5"].FormatConditions.AddDatabar();
FormatConditionType type = dataBar.Type;