Show / Hide Table of Contents

Class Menu

This is deprecated and please use SelectionControl by setting type to DROPDOWN.

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

Properties

ETag

The ETag of the item.

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

Items

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

Label

Label used to be displayed ahead of the menu. It is optional.

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

Name

The name of the text field which is will be used in FormInput.

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

OnChange

If specified, form is submitted when selection changed. If not specified, developer will need to specify a separate button.

Declaration
[JsonProperty("onChange")]
public virtual FormAction OnChange { get; set; }
Property Value
Type Description
FormAction

Implements

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