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
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 Padding : IDirectResponseSchema

Properties

Bottom

The bottom padding of the cell.

Declaration
[JsonProperty("bottom")]
public virtual 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
[JsonProperty("left")]
public virtual int? Left { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Right

The right padding of the cell.

Declaration
[JsonProperty("right")]
public virtual int? Right { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Top

The top padding of the cell.

Declaration
[JsonProperty("top")]
public virtual int? Top { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

IDirectResponseSchema
In This Article
Back to top