Show / Hide Table of Contents

Class ExtendedValue

The kinds of value that a cell in a spreadsheet can have.

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

Properties

BoolValue

Represents a boolean value.

Declaration
public virtual Nullable<bool> BoolValue { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ErrorValue

Represents an error. This field is read-only.

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

ETag

The ETag of the item.

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

FormulaValue

Represents a formula.

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

NumberValue

Represents a double value. Note: Dates, Times and DateTimes are represented as doubles in "serial number" format.

Declaration
public virtual Nullable<double> NumberValue { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

StringValue

Represents a string value. Leading single quotes are not included. For example, if the user typed &apos;123 into the UI, this would be represented as a stringValue of &quot;123&quot;.

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

Implements

IDirectResponseSchema
Back to top