Interface CfnTemplate.ITableOptionsProperty
The table options for a table visual.
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ITableOptionsProperty
Syntax (vb)
Public Interface ITableOptionsProperty
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 tableOptionsProperty = new TableOptionsProperty {
CellStyle = new TableCellStyleProperty {
BackgroundColor = "backgroundColor",
Border = new GlobalTableBorderOptionsProperty {
SideSpecificBorder = 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
}
},
UniformBorder = new TableBorderOptionsProperty {
Color = "color",
Style = "style",
Thickness = 123
}
},
FontConfiguration = new FontConfigurationProperty {
FontColor = "fontColor",
FontDecoration = "fontDecoration",
FontSize = new FontSizeProperty {
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
},
Height = 123,
HorizontalTextAlignment = "horizontalTextAlignment",
TextWrap = "textWrap",
VerticalTextAlignment = "verticalTextAlignment",
Visibility = "visibility"
},
HeaderStyle = new TableCellStyleProperty {
BackgroundColor = "backgroundColor",
Border = new GlobalTableBorderOptionsProperty {
SideSpecificBorder = 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
}
},
UniformBorder = new TableBorderOptionsProperty {
Color = "color",
Style = "style",
Thickness = 123
}
},
FontConfiguration = new FontConfigurationProperty {
FontColor = "fontColor",
FontDecoration = "fontDecoration",
FontSize = new FontSizeProperty {
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
},
Height = 123,
HorizontalTextAlignment = "horizontalTextAlignment",
TextWrap = "textWrap",
VerticalTextAlignment = "verticalTextAlignment",
Visibility = "visibility"
},
Orientation = "orientation",
RowAlternateColorOptions = new RowAlternateColorOptionsProperty {
RowAlternateColors = new [] { "rowAlternateColors" },
Status = "status",
UsePrimaryBackgroundColor = "usePrimaryBackgroundColor"
}
};
Synopsis
Properties
Cell |
The table cell style of table cells. |
Header |
The table cell style of a table header. |
Orientation | The orientation (vertical, horizontal) for a table. |
Row |
The row alternate color options (widget status, row alternate colors) for a table. |
Properties
CellStyle
The table cell style of table cells.
virtual object CellStyle { get; }
Property Value
System.
Remarks
HeaderStyle
The table cell style of a table header.
virtual object HeaderStyle { get; }
Property Value
System.
Remarks
Orientation
The orientation (vertical, horizontal) for a table.
virtual string Orientation { get; }
Property Value
System.
Remarks
RowAlternateColorOptions
The row alternate color options (widget status, row alternate colors) for a table.
virtual object RowAlternateColorOptions { get; }
Property Value
System.