Show / Hide Table of Contents

Class AppsDynamiteSharedGridGridItem

Represents a single item in the grid layout.

Inheritance
System.Object
AppsDynamiteSharedGridGridItem
Implements
Google.Apis.Requests.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.CloudSearch.v1.Data
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class AppsDynamiteSharedGridGridItem : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Id

A user-specified identifier for this grid item. This identifier is returned in the parent Grid's onClick callback parameters.

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

Image

The image that displays in the grid item.

Declaration
[JsonProperty("image")]
public virtual AppsDynamiteSharedImageComponent Image { get; set; }
Property Value
Type Description
AppsDynamiteSharedImageComponent

Layout

The layout to use for the grid item.

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

Subtitle

The grid item's subtitle.

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

TextAlignment

The horizontal alignment of the grid item's text.

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

Title

The grid item's title.

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

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top