Show / Hide Table of Contents

Class AppendDimensionRequest

Appends rows or columns to the end of a sheet.

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

Properties

Dimension

Whether rows or columns should be appended.

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

Length

The number of rows or columns to append.

Declaration
public virtual Nullable<int> Length { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

SheetId

The sheet to append rows or columns to.

Declaration
public virtual Nullable<int> SheetId { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

IDirectResponseSchema
Back to top