Show / Hide Table of Contents

Class PasteDataRequest

Inserts data into the spreadsheet starting at the specified coordinate.

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

Properties

Coordinate

The coordinate at which the data should start being inserted.

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

Data

The data to insert.

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

Delimiter

The delimiter in the data.

Declaration
public virtual string Delimiter { 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

Html

True if the data is HTML.

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

Type

How the data should be pasted.

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

Implements

IDirectResponseSchema
Back to top