Class CfnAnalysisPropsMixin.TableFieldCustomTextContentProperty
The custom text content (value, font configuration) for the table link content configuration.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnAnalysisPropsMixin.TableFieldCustomTextContentProperty : CfnAnalysisPropsMixin.ITableFieldCustomTextContentProperty
Syntax (vb)
Public Class CfnAnalysisPropsMixin.TableFieldCustomTextContentProperty Implements CfnAnalysisPropsMixin.ITableFieldCustomTextContentProperty
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.Mixins.Preview.AWS.QuickSight.Mixins;
var tableFieldCustomTextContentProperty = new TableFieldCustomTextContentProperty {
FontConfiguration = new FontConfigurationProperty {
FontColor = "fontColor",
FontDecoration = "fontDecoration",
FontFamily = "fontFamily",
FontSize = new FontSizeProperty {
Absolute = "absolute",
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
},
Value = "value"
};
Synopsis
Constructors
| TableFieldCustomTextContentProperty() | The custom text content (value, font configuration) for the table link content configuration. |
Properties
| FontConfiguration | The font configuration of the custom text content for the table URL link content. |
| Value | The string value of the custom text content for the table URL link content. |
Constructors
TableFieldCustomTextContentProperty()
The custom text content (value, font configuration) for the table link content configuration.
public TableFieldCustomTextContentProperty()
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.Mixins.Preview.AWS.QuickSight.Mixins;
var tableFieldCustomTextContentProperty = new TableFieldCustomTextContentProperty {
FontConfiguration = new FontConfigurationProperty {
FontColor = "fontColor",
FontDecoration = "fontDecoration",
FontFamily = "fontFamily",
FontSize = new FontSizeProperty {
Absolute = "absolute",
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
},
Value = "value"
};
Properties
FontConfiguration
The font configuration of the custom text content for the table URL link content.
public object? FontConfiguration { get; set; }
Property Value
Remarks
Value
The string value of the custom text content for the table URL link content.
public string? Value { get; set; }