Class CfnTemplate.TableFieldCustomTextContentProperty
The custom text content (value, font configuration) for the table link content configuration.
Inheritance
System.Object
CfnTemplate.TableFieldCustomTextContentProperty
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class TableFieldCustomTextContentProperty : Object, CfnTemplate.ITableFieldCustomTextContentProperty
Syntax (vb)
Public Class TableFieldCustomTextContentProperty
Inherits Object
Implements CfnTemplate.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.AWS.QuickSight;
var tableFieldCustomTextContentProperty = new TableFieldCustomTextContentProperty {
FontConfiguration = new FontConfigurationProperty {
FontColor = "fontColor",
FontDecoration = "fontDecoration",
FontSize = new FontSizeProperty {
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
},
// the properties below are optional
Value = "value"
};
Synopsis
Constructors
TableFieldCustomTextContentProperty() |
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()
public TableFieldCustomTextContentProperty()
Properties
FontConfiguration
The font configuration of the custom text content for the table URL link content.
public object FontConfiguration { get; set; }
Property Value
System.Object
Remarks
Value
The string value of the custom text content for the table URL link content.
public string Value { get; set; }
Property Value
System.String