Show / Hide Table of Contents

Class Grid

Inheritance
object
Grid
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
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
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<T><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
int?

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
string

Implements

IDirectResponseSchema
In This Article
Back to top Generated by DocFX