Class CopyPasteRequest
Copies data from the source to the destination.
Implements
Inherited Members
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class CopyPasteRequest : IDirectResponseSchema
Properties
Destination
The location to paste to. If the range covers a span that's a multiple of the source's height or width, then the data will be repeated to fill in the destination range. If the range is smaller than the source range, the entire source data will still be copied (beyond the end of the destination range).
Declaration
[JsonProperty("destination")]
public virtual GridRange Destination { get; set; }
Property Value
Type | Description |
---|---|
GridRange |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
PasteOrientation
How that data should be oriented when pasting.
Declaration
[JsonProperty("pasteOrientation")]
public virtual string PasteOrientation { get; set; }
Property Value
Type | Description |
---|---|
string |
PasteType
What kind of data to paste.
Declaration
[JsonProperty("pasteType")]
public virtual string PasteType { get; set; }
Property Value
Type | Description |
---|---|
string |
Source
The source range to copy.
Declaration
[JsonProperty("source")]
public virtual GridRange Source { get; set; }
Property Value
Type | Description |
---|---|
GridRange |