Show / Hide Table of Contents

Class TextFormatRun

A run of a text format. The format of this run continues until the start index of the next run. When updating, all fields must be set.

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

Properties

ETag

The ETag of the item.

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

Format

The format of this run. Absent values inherit the cell's format.

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

StartIndex

The character index where this run starts.

Declaration
[JsonProperty("startIndex")]
public virtual int? StartIndex { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

IDirectResponseSchema
In This Article
Back to top