Interface CfnTemplate.IDropDownControlDisplayOptionsProperty
The display options of a control.
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IDropDownControlDisplayOptionsProperty
Syntax (vb)
Public Interface IDropDownControlDisplayOptionsProperty
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 dropDownControlDisplayOptionsProperty = new DropDownControlDisplayOptionsProperty {
InfoIconLabelOptions = new SheetControlInfoIconLabelOptionsProperty {
InfoIconText = "infoIconText",
Visibility = "visibility"
},
SelectAllOptions = new ListControlSelectAllOptionsProperty {
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
Properties
InfoIconLabelOptions | The configuration of info icon label options. |
SelectAllOptions | The configuration of the |
TitleOptions | The options to configure the title visibility, name, and font size. |
Properties
InfoIconLabelOptions
The configuration of info icon label options.
virtual object InfoIconLabelOptions { get; }
Property Value
System.Object
Remarks
SelectAllOptions
The configuration of the Select all
options in a dropdown control.
virtual object SelectAllOptions { get; }
Property Value
System.Object
Remarks
TitleOptions
The options to configure the title visibility, name, and font size.
virtual object TitleOptions { get; }
Property Value
System.Object