Show / Hide Table of Contents

Class ExtendedValue

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

Inheritance
object
ExtendedValue
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
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
bool?

ETag

The ETag of the item.

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

ErrorValue

Represents an error. This field is read-only.

Declaration
[JsonProperty("errorValue")]
public virtual ErrorValue ErrorValue { get; set; }
Property Value
Type Description
ErrorValue

FormulaValue

Represents a formula.

Declaration
[JsonProperty("formulaValue")]
public virtual string FormulaValue { get; set; }
Property Value
Type Description
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
double?

StringValue

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

Declaration
[JsonProperty("stringValue")]
public virtual string StringValue { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX