Show / Hide Table of Contents

Class AddConditionalFormatRuleRequest

Adds a new conditional format rule at the given index. All subsequent rules' indexes are incremented.

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

Properties

ETag

The ETag of the item.

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

Index

The zero-based index where the rule should be inserted.

Declaration
public virtual Nullable<int> Index { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Rule

The rule to add.

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

Implements

IDirectResponseSchema
Back to top