Class ColorScale

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

objectColorScale

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

bool

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

ConditionalFormattingValue

MaxColor

Get or set the gradient color for the maximum value in the range.

public Color MaxColor { get; set; }

Property Value

Color

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

ConditionalFormattingValue

MidColor

Get or set the gradient color for the middle value in the range.

public Color MidColor { get; set; }

Property Value

Color

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

ConditionalFormattingValue

MinColor

Get or set the gradient color for the minimum value in the range.

public Color MinColor { get; set; }

Property Value

Color