Show / Hide Table of Contents

Class PagespeedApiFormatStringV2.ArgsData.SecondaryRectsData

Inheritance
System.Object
PagespeedApiFormatStringV2.ArgsData.SecondaryRectsData
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.Pagespeedonline.v2.Data
Assembly: Google.Apis.Pagespeedonline.v2.dll
Syntax
public class SecondaryRectsData

Properties

Height

The height of the rect.

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

Left

The left coordinate of the rect, in page coordinates.

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

Top

The top coordinate of the rect, in page coordinates.

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

Width

The width of the rect.

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