Show / Hide Table of Contents

Class Padding

The amount of padding around the cell, in pixels. When updating padding, every field must be specified.

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

Properties

Bottom

The bottom padding of the cell.

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

ETag

The ETag of the item.

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

Left

The left padding of the cell.

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

Right

The right padding of the cell.

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

Top

The top padding of the cell.

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

Implements

IDirectResponseSchema
Back to top