Interface CfnAnalysis.ITableSideBorderOptionsProperty
The side border options for a table.
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ITableSideBorderOptionsProperty
Syntax (vb)
Public Interface 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. |
Inner |
The table border options of the inner horizontal border. |
Inner |
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.
virtual object Bottom { get; }
Property Value
System.
Remarks
InnerHorizontal
The table border options of the inner horizontal border.
virtual object InnerHorizontal { get; }
Property Value
System.
Remarks
InnerVertical
The table border options of the inner vertical border.
virtual object InnerVertical { get; }
Property Value
System.
Remarks
Left
The table border options of the left border.
virtual object Left { get; }
Property Value
System.
Remarks
Right
The table border options of the right border.
virtual object Right { get; }
Property Value
System.
Remarks
Top
The table border options of the top border.
virtual object Top { get; }
Property Value
System.