Show / Hide Table of Contents

Class BooleanRule

A rule that may or may not match, depending on the condition.

Inheritance
System.Object
BooleanRule
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 BooleanRule : IDirectResponseSchema

Properties

Condition

The condition of the rule. If the condition evaluates to true, the format is applied.

Declaration
[JsonProperty("condition")]
public virtual BooleanCondition Condition { get; set; }
Property Value
Type Description
BooleanCondition

ETag

The ETag of the item.

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

Format

The format to apply. Conditional formatting can only apply a subset of formatting: bold, italic, strikethrough, foreground color & background color.

Declaration
[JsonProperty("format")]
public virtual CellFormat Format { get; set; }
Property Value
Type Description
CellFormat

Implements

IDirectResponseSchema
In This Article
Back to top