[]
Gets the type of this conditional format.
For a data bar conditional formatting rule, this property returns the corresponding FormatConditionType value, such as Databar.
FormatConditionType Type { get; }
ReadOnly Property Type As FormatConditionType
worksheet.Range["A1:A5"].Value = new object[,] {{10}, {30}, {20}, {40}, {25}};
IDataBar dataBar = worksheet.Range["A1:A5"].FormatConditions.AddDatabar();
FormatConditionType type = dataBar.Type;