Class PasteDataRequest
Inserts data into the spreadsheet starting at the specified coordinate.
Inheritance
System.Object
PasteDataRequest
Implements
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 PasteDataRequest : IDirectResponseSchema
Properties
Coordinate
The coordinate at which the data should start being inserted.
Declaration
[JsonProperty("coordinate")]
public virtual GridCoordinate Coordinate { get; set; }
Property Value
Type | Description |
---|---|
GridCoordinate |
Data
The data to insert.
Declaration
[JsonProperty("data")]
public virtual string Data { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Delimiter
The delimiter in the data.
Declaration
[JsonProperty("delimiter")]
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
[JsonProperty("html")]
public virtual bool? Html { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
Type
How the data should be pasted.
Declaration
[JsonProperty("type")]
public virtual string Type { get; set; }
Property Value
Type | Description |
---|---|
System.String |