[]
Gets the type of this conditional format.
For an IAboveAverage rule, this property returns AboveAverageCondition.
FormatConditionType Type { get; }
ReadOnly Property Type As FormatConditionType
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;