Show / Hide Table of Contents

Class AppsDynamiteSharedDecoratedText

A widget that displays text with optional decorations such as a label above or below the text, an icon in front of the text, a selection widget or a button after the text.

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

Properties

BottomLabel

The formatted text label that shows below the main text.

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

Button

A button that can be clicked to trigger an action.

Declaration
[JsonProperty("button")]
public virtual AppsDynamiteSharedButton Button { get; set; }
Property Value
Type Description
AppsDynamiteSharedButton

EndIcon

An icon displayed after the text.

Declaration
[JsonProperty("endIcon")]
public virtual AppsDynamiteSharedIcon EndIcon { get; set; }
Property Value
Type Description
AppsDynamiteSharedIcon

ETag

The ETag of the item.

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

Icon

Deprecated in favor of start_icon.

Declaration
[JsonProperty("icon")]
public virtual AppsDynamiteSharedIcon Icon { get; set; }
Property Value
Type Description
AppsDynamiteSharedIcon

OnClick

Only the top and bottom label and content region are clickable.

Declaration
[JsonProperty("onClick")]
public virtual AppsDynamiteSharedOnClick OnClick { get; set; }
Property Value
Type Description
AppsDynamiteSharedOnClick

StartIcon

The icon displayed in front of the text.

Declaration
[JsonProperty("startIcon")]
public virtual AppsDynamiteSharedIcon StartIcon { get; set; }
Property Value
Type Description
AppsDynamiteSharedIcon

SwitchControl

A switch widget can be clicked to change its state or trigger an action.

Declaration
[JsonProperty("switchControl")]
public virtual AppsDynamiteSharedDecoratedTextSwitchControl SwitchControl { get; set; }
Property Value
Type Description
AppsDynamiteSharedDecoratedTextSwitchControl

Text

Required. The main widget formatted text. See Text formatting for details.

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

TopLabel

The formatted text label that shows above the main text.

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

WrapText

The wrap text setting. If true, the text is wrapped and displayed in multiline. Otherwise, the text is truncated.

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

Implements

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