Show / Hide Table of Contents

Class AppsDynamiteSharedTextInput

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

Inheritance
System.Object
AppsDynamiteSharedTextInput
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 AppsDynamiteSharedTextInput : 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 AppsDynamiteSharedAction AutoCompleteAction { get; set; }
Property Value
Type Description
AppsDynamiteSharedAction

ETag

The ETag of the item.

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

HintText

The hint text.

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

InitialSuggestions

The initial suggestions made before any user input.

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

Label

At least one of label and hintText must be specified.

Declaration
[JsonProperty("label")]
public virtual string Label { get; set; }
Property Value
Type Description
System.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
System.String

OnChangeAction

The onChange action, for example, invoke a function.

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

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
System.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
System.String

Implements

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