Interface CfnAnalysis.ITableSideBorderOptionsProperty
The side border options for a table.
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnAnalysis.ITableSideBorderOptionsProperty
Syntax (vb)
Public Interface CfnAnalysis.ITableSideBorderOptionsProperty
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 tableSideBorderOptionsProperty = new TableSideBorderOptionsProperty {
Bottom = new TableBorderOptionsProperty {
Color = "color",
Style = "style",
Thickness = 123
},
InnerHorizontal = new TableBorderOptionsProperty {
Color = "color",
Style = "style",
Thickness = 123
},
InnerVertical = new TableBorderOptionsProperty {
Color = "color",
Style = "style",
Thickness = 123
},
Left = new TableBorderOptionsProperty {
Color = "color",
Style = "style",
Thickness = 123
},
Right = new TableBorderOptionsProperty {
Color = "color",
Style = "style",
Thickness = 123
},
Top = new TableBorderOptionsProperty {
Color = "color",
Style = "style",
Thickness = 123
}
};
Synopsis
Properties
Bottom | The table border options of the bottom border. |
InnerHorizontal | The table border options of the inner horizontal border. |
InnerVertical | The table border options of the inner vertical border. |
Left | The table border options of the left border. |
Right | The table border options of the right border. |
Top | The table border options of the top border. |
Properties
Bottom
The table border options of the bottom border.
object? Bottom { get; }
Property Value
Remarks
InnerHorizontal
The table border options of the inner horizontal border.
object? InnerHorizontal { get; }
Property Value
Remarks
InnerVertical
The table border options of the inner vertical border.
object? InnerVertical { get; }
Property Value
Remarks
Left
The table border options of the left border.
object? Left { get; }
Property Value
Remarks
Right
The table border options of the right border.
object? Right { get; }
Property Value
Remarks
Top
The table border options of the top border.
object? Top { get; }