Show / Hide Table of Contents

Class Grid

Inheritance
System.Object
Grid
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 Grid : IDirectResponseSchema

Properties

BorderStyle

The border style to apply to each grid item.

Declaration
[JsonProperty("borderStyle")]
public virtual BorderStyle BorderStyle { get; set; }
Property Value
Type Description
BorderStyle

ETag

The ETag of the item.

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

Items

The items to display in the grid.

Declaration
[JsonProperty("items")]
public virtual IList<GridItem> Items { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<GridItem>

NumColumns

The number of columns to display in the grid. Note that a default value will be used if this field is not specified, and that default value will be different depending on where the grid is shown (dialog vs companion).

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

OnClick

This callback will be reused by each individual GridItem, but with the item's identifier and index in the items list added to the callback's parameters.

Declaration
[JsonProperty("onClick")]
public virtual OnClick OnClick { get; set; }
Property Value
Type Description
OnClick

Title

The text to display in the grid header.

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