Show / Hide Table of Contents

Class Borders

The borders of the cell.

Inheritance
System.Object
Borders
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 Borders : IDirectResponseSchema

Properties

Bottom

The bottom border of the cell.

Declaration
[JsonProperty("bottom")]
public virtual Border Bottom { get; set; }
Property Value
Type Description
Border

ETag

The ETag of the item.

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

Left

The left border of the cell.

Declaration
[JsonProperty("left")]
public virtual Border Left { get; set; }
Property Value
Type Description
Border

Right

The right border of the cell.

Declaration
[JsonProperty("right")]
public virtual Border Right { get; set; }
Property Value
Type Description
Border

Top

The top border of the cell.

Declaration
[JsonProperty("top")]
public virtual Border Top { get; set; }
Property Value
Type Description
Border

Implements

IDirectResponseSchema
In This Article
Back to top