Show / Hide Table of Contents

Class FsCommand

FsCommand.

Inheritance
System.Object
FsCommand
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.Dfareporting.v3_3.Data
Assembly: Google.Apis.Dfareporting.v3_3.dll
Syntax
public class FsCommand : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Left

Distance from the left of the browser.Applicable when positionOption is DISTANCE_FROM_TOP_LEFT_CORNER.

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

PositionOption

Position in the browser where the window will open.

Declaration
[JsonProperty("positionOption")]
public virtual string PositionOption { get; set; }
Property Value
Type Description
System.String

Top

Distance from the top of the browser. Applicable when positionOption is DISTANCE_FROM_TOP_LEFT_CORNER.

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

WindowHeight

Height of the window.

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

WindowWidth

Width of the window.

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

Implements

IDirectResponseSchema
In This Article
Back to top