Class CfnDashboardPropsMixin.FontSizeProperty
The option that determines the text display size.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDashboardPropsMixin.FontSizeProperty : CfnDashboardPropsMixin.IFontSizeProperty
Syntax (vb)
Public Class CfnDashboardPropsMixin.FontSizeProperty Implements CfnDashboardPropsMixin.IFontSizeProperty
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 fontSizeProperty = new FontSizeProperty {
Absolute = "absolute",
Relative = "relative"
};
Synopsis
Constructors
| FontSizeProperty() | The option that determines the text display size. |
Properties
| Absolute | The font size that you want to use in px. |
| Relative | The lexical name for the text size, proportional to its surrounding context. |
Constructors
FontSizeProperty()
The option that determines the text display size.
public FontSizeProperty()
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 fontSizeProperty = new FontSizeProperty {
Absolute = "absolute",
Relative = "relative"
};
Properties
Absolute
The font size that you want to use in px.
public string? Absolute { get; set; }
Property Value
Remarks
Relative
The lexical name for the text size, proportional to its surrounding context.
public string? Relative { get; set; }