Show / Hide Table of Contents

Class AppsDynamiteStorageTextInput

A text input is a UI item where users can input text. A text input can also have an onChange action and suggestions.

Inheritance
object
AppsDynamiteStorageTextInput
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 AppsDynamiteStorageTextInput : IDirectResponseSchema

Properties

AutoCompleteAction

The refresh function that returns suggestions based on the user's input text. If the callback is not specified, autocomplete is done in client side based on the initial suggestion items.

Declaration
[JsonProperty("autoCompleteAction")]
public virtual AppsDynamiteStorageAction AutoCompleteAction { get; set; }
Property Value
Type Description
AppsDynamiteStorageAction

ETag

The ETag of the item.

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

HintText

The hint text.

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

InitialSuggestions

The initial suggestions made before any user input.

Declaration
[JsonProperty("initialSuggestions")]
public virtual AppsDynamiteStorageSuggestions InitialSuggestions { get; set; }
Property Value
Type Description
AppsDynamiteStorageSuggestions

Label

At least one of label and hintText must be specified.

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

Name

The name of the text input which is used in formInput.

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

OnChangeAction

The onChange action, for example, invoke a function.

Declaration
[JsonProperty("onChangeAction")]
public virtual AppsDynamiteStorageAction OnChangeAction { get; set; }
Property Value
Type Description
AppsDynamiteStorageAction

Type

The style of the text, for example, a single line or multiple lines.

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

Value

The default value when there is no input from the 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