Show / Hide Table of Contents

Class TextField

Inheritance
object
TextField
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 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
bool?

ETag

The ETag of the item.

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

HintText

Declaration
[JsonProperty("hintText")]
public virtual string HintText { get; set; }
Property Value
Type Description
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
string

MaxLines

Declaration
[JsonProperty("maxLines")]
public virtual int? MaxLines { get; set; }
Property Value
Type Description
int?

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
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
string

Value

The default value when no input from user.

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

Implements

IDirectResponseSchema
In This Article
Back to top Generated by DocFX