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
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 ExtendedValue : IDirectResponseSchema

Properties

BoolValue

Represents a boolean value.

Declaration
[JsonProperty("boolValue")]
public virtual bool? BoolValue { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ErrorValue

Represents an error. This field is read-only.

Declaration
[JsonProperty("errorValue")]
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
[JsonProperty("formulaValue")]
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
[JsonProperty("numberValue")]
public virtual 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
[JsonProperty("stringValue")]
public virtual string StringValue { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top