Class CfnTemplatePropsMixin.VisualTitleLabelOptionsProperty
The title label options for a visual.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnTemplatePropsMixin.VisualTitleLabelOptionsProperty : CfnTemplatePropsMixin.IVisualTitleLabelOptionsProperty
Syntax (vb)
Public Class CfnTemplatePropsMixin.VisualTitleLabelOptionsProperty Implements CfnTemplatePropsMixin.IVisualTitleLabelOptionsProperty
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 visualTitleLabelOptionsProperty = new VisualTitleLabelOptionsProperty {
FormatText = new ShortFormatTextProperty {
PlainText = "plainText",
RichText = "richText"
},
Visibility = "visibility"
};
Synopsis
Constructors
| VisualTitleLabelOptionsProperty() | The title label options for a visual. |
Properties
| FormatText | The short text format of the title label, such as plain text or rich text. |
| Visibility | The visibility of the title label. |
Constructors
VisualTitleLabelOptionsProperty()
The title label options for a visual.
public VisualTitleLabelOptionsProperty()
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 visualTitleLabelOptionsProperty = new VisualTitleLabelOptionsProperty {
FormatText = new ShortFormatTextProperty {
PlainText = "plainText",
RichText = "richText"
},
Visibility = "visibility"
};
Properties
FormatText
The short text format of the title label, such as plain text or rich text.
public object? FormatText { get; set; }
Property Value
Remarks
Visibility
The visibility of the title label.
public string? Visibility { get; set; }