Show / Hide Table of Contents

Class SelectionControl

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

Properties

ETag

The ETag of the item.

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

Items

For radio button, at most one of the items will be selected.

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

Label

Label used to be displayed ahead of the selection control. 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

Type

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

Implements

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