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
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class AddConditionalFormatRuleRequest : 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
[JsonProperty("index")]
public virtual int? Index { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Rule

The rule to add.

Declaration
[JsonProperty("rule")]
public virtual ConditionalFormatRule Rule { get; set; }
Property Value
Type Description
ConditionalFormatRule

Implements

IDirectResponseSchema
In This Article
Back to top