Class ColorScale
Namespace: Aspose.Cells
Assembly: Aspose.Cells.dll (25.2.0)
Describe the ColorScale conditional formatting rule. This conditional formatting rule creates a gradated color scale on the cells.
public class ColorScale
Inheritance
Inherited Members
object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Properties
Is3ColorScale
Indicates whether conditional formatting is 3 color scale.
public bool Is3ColorScale { get; set; }
Property Value
MaxCfvo
Get or set this ColorScale’s max value object. Cannot set null or CFValueObject with type FormatConditionValueType.Min to it.
public ConditionalFormattingValue MaxCfvo { get; }
Property Value
MaxColor
Get or set the gradient color for the maximum value in the range.
public Color MaxColor { get; set; }
Property Value
MidCfvo
Get or set this ColorScale’s mid value object. Cannot set CFValueObject with type FormatConditionValueType.Max or FormatConditionValueType.Min to it.
public ConditionalFormattingValue MidCfvo { get; }
Property Value
MidColor
Get or set the gradient color for the middle value in the range.
public Color MidColor { get; set; }
Property Value
MinCfvo
Get or set this ColorScale’s min value object. Cannot set null or CFValueObject with type FormatConditionValueType.Max to it.
public ConditionalFormattingValue MinCfvo { get; }
Property Value
MinColor
Get or set the gradient color for the minimum value in the range.
public Color MinColor { get; set; }