Class CfnTemplatePropsMixin.DefaultSliderControlOptionsProperty
The default options that correspond to the Slider filter control type.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnTemplatePropsMixin.DefaultSliderControlOptionsProperty : CfnTemplatePropsMixin.IDefaultSliderControlOptionsProperty
Syntax (vb)
Public Class CfnTemplatePropsMixin.DefaultSliderControlOptionsProperty Implements CfnTemplatePropsMixin.IDefaultSliderControlOptionsProperty
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.CfnPropertyMixins.AWS.QuickSight;
var defaultSliderControlOptionsProperty = new DefaultSliderControlOptionsProperty {
DisplayOptions = new SliderControlDisplayOptionsProperty {
InfoIconLabelOptions = new SheetControlInfoIconLabelOptionsProperty {
InfoIconText = "infoIconText",
Visibility = "visibility"
},
TitleOptions = new LabelOptionsProperty {
CustomLabel = "customLabel",
FontConfiguration = new FontConfigurationProperty {
FontColor = "fontColor",
FontDecoration = "fontDecoration",
FontFamily = "fontFamily",
FontSize = new FontSizeProperty {
Absolute = "absolute",
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
},
Visibility = "visibility"
}
},
MaximumValue = 123,
MinimumValue = 123,
StepSize = 123,
Type = "type"
};
Synopsis
Constructors
| DefaultSliderControlOptionsProperty() | The default options that correspond to the |
Properties
| DisplayOptions | The display options of a control. |
| MaximumValue | The larger value that is displayed at the right of the slider. |
| MinimumValue | The smaller value that is displayed at the left of the slider. |
| StepSize | The number of increments that the slider bar is divided into. |
| Type | The type of the |
Constructors
DefaultSliderControlOptionsProperty()
The default options that correspond to the Slider filter control type.
public DefaultSliderControlOptionsProperty()
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.CfnPropertyMixins.AWS.QuickSight;
var defaultSliderControlOptionsProperty = new DefaultSliderControlOptionsProperty {
DisplayOptions = new SliderControlDisplayOptionsProperty {
InfoIconLabelOptions = new SheetControlInfoIconLabelOptionsProperty {
InfoIconText = "infoIconText",
Visibility = "visibility"
},
TitleOptions = new LabelOptionsProperty {
CustomLabel = "customLabel",
FontConfiguration = new FontConfigurationProperty {
FontColor = "fontColor",
FontDecoration = "fontDecoration",
FontFamily = "fontFamily",
FontSize = new FontSizeProperty {
Absolute = "absolute",
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
},
Visibility = "visibility"
}
},
MaximumValue = 123,
MinimumValue = 123,
StepSize = 123,
Type = "type"
};
Properties
DisplayOptions
The display options of a control.
public object? DisplayOptions { get; set; }
Property Value
Remarks
MaximumValue
The larger value that is displayed at the right of the slider.
public double? MaximumValue { get; set; }
Property Value
Remarks
MinimumValue
The smaller value that is displayed at the left of the slider.
public double? MinimumValue { get; set; }
Property Value
Remarks
StepSize
The number of increments that the slider bar is divided into.
public double? StepSize { get; set; }
Property Value
Remarks
Type
The type of the DefaultSliderControlOptions . Choose one of the following options:.
public string? Type { get; set; }