Class CfnDashboard.ListControlDisplayOptionsProperty
The display options of a control.
Inheritance
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ListControlDisplayOptionsProperty : Object, CfnDashboard.IListControlDisplayOptionsProperty
Syntax (vb)
Public Class ListControlDisplayOptionsProperty
Inherits Object
Implements CfnDashboard.IListControlDisplayOptionsProperty
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 listControlDisplayOptionsProperty = new ListControlDisplayOptionsProperty {
InfoIconLabelOptions = new SheetControlInfoIconLabelOptionsProperty {
InfoIconText = "infoIconText",
Visibility = "visibility"
},
SearchOptions = new ListControlSearchOptionsProperty {
Visibility = "visibility"
},
SelectAllOptions = new ListControlSelectAllOptionsProperty {
Visibility = "visibility"
},
TitleOptions = new LabelOptionsProperty {
CustomLabel = "customLabel",
FontConfiguration = new FontConfigurationProperty {
FontColor = "fontColor",
FontDecoration = "fontDecoration",
FontSize = new FontSizeProperty {
Absolute = "absolute",
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
},
Visibility = "visibility"
}
};
Synopsis
Constructors
List |
Properties
Info |
The configuration of info icon label options. |
Search |
The configuration of the search options in a list control. |
Select |
The configuration of the |
Title |
The options to configure the title visibility, name, and font size. |
Constructors
ListControlDisplayOptionsProperty()
public ListControlDisplayOptionsProperty()
Properties
InfoIconLabelOptions
The configuration of info icon label options.
public object InfoIconLabelOptions { get; set; }
Property Value
System.
Remarks
SearchOptions
The configuration of the search options in a list control.
public object SearchOptions { get; set; }
Property Value
System.
Remarks
SelectAllOptions
The configuration of the Select all
options in a list control.
public object SelectAllOptions { get; set; }
Property Value
System.
Remarks
TitleOptions
The options to configure the title visibility, name, and font size.
public object TitleOptions { get; set; }
Property Value
System.