Class CfnTemplate.TableBorderOptionsProperty
The border options for a table border.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTemplate.TableBorderOptionsProperty : CfnTemplate.ITableBorderOptionsProperty
Syntax (vb)
Public Class CfnTemplate.TableBorderOptionsProperty Implements CfnTemplate.ITableBorderOptionsProperty
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 tableBorderOptionsProperty = new TableBorderOptionsProperty {
Color = "color",
Style = "style",
Thickness = 123
};
Synopsis
Constructors
TableBorderOptionsProperty() | The border options for a table border. |
Properties
Color | The color of a table border. |
Style | The style (none, solid) of a table border. |
Thickness | The thickness of a table border. |
Constructors
TableBorderOptionsProperty()
The border options for a table border.
public TableBorderOptionsProperty()
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 tableBorderOptionsProperty = new TableBorderOptionsProperty {
Color = "color",
Style = "style",
Thickness = 123
};
Properties
Color
The color of a table border.
public string? Color { get; set; }
Property Value
Remarks
Style
The style (none, solid) of a table border.
public string? Style { get; set; }
Property Value
Remarks
Thickness
The thickness of a table border.
public double? Thickness { get; set; }