Show / Hide Table of Contents

Class CutPasteRequest

Moves data from the source to the destination.

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

Properties

Destination

The top-left coordinate where the data should be pasted.

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

ETag

The ETag of the item.

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

PasteType

What kind of data to paste. All the source data will be cut, regardless of what is pasted.

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

Source

The source data to cut.

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

Implements

IDirectResponseSchema
Back to top