Show / Hide Table of Contents

Class ConditionalFormatRule

A rule describing a conditional format.

Inheritance
System.Object
ConditionalFormatRule
Implements
IDirectResponseSchema
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class ConditionalFormatRule : object, IDirectResponseSchema

Properties

BooleanRule

The formatting is either "on" or "off" according to the rule.

Declaration
public virtual BooleanRule BooleanRule { get; set; }
Property Value
Type Description
BooleanRule

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

GradientRule

The formatting will vary based on the gradients in the rule.

Declaration
public virtual GradientRule GradientRule { get; set; }
Property Value
Type Description
GradientRule

Ranges

The ranges that are formatted if the condition is true. All the ranges must be on the same grid.

Declaration
public virtual IList<GridRange> Ranges { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<GridRange>

Implements

IDirectResponseSchema
Back to top