Show / Hide Table of Contents

Class BooleanCondition

A condition that can evaluate to true or false. BooleanConditions are used by conditional formatting, data validation, and the criteria in filters.

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

Properties

ETag

The ETag of the item.

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

Type

The type of condition.

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

Values

The values of the condition. The number of supported values depends on the condition type. Some support zero values, others one or two values, and ConditionType.ONE_OF_LIST supports an arbitrary number of values.

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

Implements

IDirectResponseSchema
Back to top