Show / Hide Table of Contents

Class TextField

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

Properties

AutoComplete

The initial set of auto complete items without any user input.

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

AutoCompleteCallback

The refresh function which returns AutoComplete based on the user's input text. If the callback is not specified, auto complete will be purely done in client side based on the auto_complete items.

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

AutoCompleteMultipleSelections

When set to true, a user can input multiple auto-complet items.

Declaration
[JsonProperty("autoCompleteMultipleSelections")]
public virtual bool? AutoCompleteMultipleSelections { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ETag

The ETag of the item.

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

HintText

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

Label

One of label or hint_text is required to be specified by the developers.

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

MaxLines

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

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

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

Value

The default value when no input from user.

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

Implements

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