Class CfnTemplate.TextAreaControlDisplayOptionsProperty
The display options of a control.
Inheritance
System.Object
CfnTemplate.TextAreaControlDisplayOptionsProperty
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class TextAreaControlDisplayOptionsProperty : Object, CfnTemplate.ITextAreaControlDisplayOptionsProperty
Syntax (vb)
Public Class TextAreaControlDisplayOptionsProperty
Inherits Object
Implements CfnTemplate.ITextAreaControlDisplayOptionsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var textAreaControlDisplayOptionsProperty = new TextAreaControlDisplayOptionsProperty {
InfoIconLabelOptions = new SheetControlInfoIconLabelOptionsProperty {
InfoIconText = "infoIconText",
Visibility = "visibility"
},
PlaceholderOptions = new TextControlPlaceholderOptionsProperty {
Visibility = "visibility"
},
TitleOptions = new LabelOptionsProperty {
CustomLabel = "customLabel",
FontConfiguration = new FontConfigurationProperty {
FontColor = "fontColor",
FontDecoration = "fontDecoration",
FontSize = new FontSizeProperty {
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
},
Visibility = "visibility"
}
};
Synopsis
Constructors
TextAreaControlDisplayOptionsProperty() |
Properties
InfoIconLabelOptions | The configuration of info icon label options. |
PlaceholderOptions | The configuration of the placeholder options in a text area control. |
TitleOptions | The options to configure the title visibility, name, and font size. |
Constructors
TextAreaControlDisplayOptionsProperty()
public TextAreaControlDisplayOptionsProperty()
Properties
InfoIconLabelOptions
The configuration of info icon label options.
public object InfoIconLabelOptions { get; set; }
Property Value
System.Object
Remarks
PlaceholderOptions
The configuration of the placeholder options in a text area control.
public object PlaceholderOptions { get; set; }
Property Value
System.Object
Remarks
TitleOptions
The options to configure the title visibility, name, and font size.
public object TitleOptions { get; set; }
Property Value
System.Object