Show / Hide Table of Contents

Class Person.CoverData.CoverInfoData

Extra information about the cover photo.

Inheritance
System.Object
Person.CoverData.CoverInfoData
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.Plus.v1.Data
Assembly: Google.Apis.Plus.v1.dll
Syntax
public class CoverInfoData

Properties

LeftImageOffset

The difference between the left position of the cover image and the actual displayed cover image. Only valid for banner layout.

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

TopImageOffset

The difference between the top position of the cover image and the actual displayed cover image. Only valid for banner layout.

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