Class UpdateConditionalFormatRuleRequest
Updates a conditional format rule at the given index, or moves a conditional format rule to another index.
Inheritance
System.Object
UpdateConditionalFormatRuleRequest
Implements
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 UpdateConditionalFormatRuleRequest : 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 of the rule that should be replaced or moved.
Declaration
[JsonProperty("index")]
public virtual int? Index { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
NewIndex
The zero-based new index the rule should end up at.
Declaration
[JsonProperty("newIndex")]
public virtual int? NewIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
Rule
The rule that should replace the rule at the given index.
Declaration
[JsonProperty("rule")]
public virtual ConditionalFormatRule Rule { get; set; }
Property Value
Type | Description |
---|---|
ConditionalFormatRule |
SheetId
The sheet of the rule to move. Required if new_index is set, unused otherwise.
Declaration
[JsonProperty("sheetId")]
public virtual int? SheetId { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |