Show / Hide Table of Contents

Class OverlayPosition

The location an object is overlaid on top of a grid.

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

Properties

AnchorCell

The cell the object is anchored to.

Declaration
public virtual GridCoordinate AnchorCell { 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

HeightPixels

The height of the object, in pixels. Defaults to 371.

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

OffsetXPixels

The horizontal offset, in pixels, that the object is offset from the anchor cell.

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

OffsetYPixels

The vertical offset, in pixels, that the object is offset from the anchor cell.

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

WidthPixels

The width of the object, in pixels. Defaults to 600.

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

Implements

IDirectResponseSchema
Back to top