Show / Hide Table of Contents

Class TextToColumnsRequest

Splits a column of text into multiple columns, based on a delimiter in each cell.

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

Properties

Delimiter

The delimiter to use. Used only if delimiterType is CUSTOM.

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

DelimiterType

The delimiter type to use.

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

ETag

The ETag of the item.

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

Source

The source data range. This must span exactly one column.

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

Implements

IDirectResponseSchema
Back to top