Class CfnTemplatePropsMixin.TableCellStyleProperty
The table cell style for a cell in pivot table or table visual.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnTemplatePropsMixin.TableCellStyleProperty : CfnTemplatePropsMixin.ITableCellStyleProperty
Syntax (vb)
Public Class CfnTemplatePropsMixin.TableCellStyleProperty Implements CfnTemplatePropsMixin.ITableCellStyleProperty
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.Mixins.Preview.AWS.QuickSight.Mixins;
var tableCellStyleProperty = 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",
FontFamily = "fontFamily",
FontSize = new FontSizeProperty {
Absolute = "absolute",
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
},
Height = 123,
HorizontalTextAlignment = "horizontalTextAlignment",
TextWrap = "textWrap",
VerticalTextAlignment = "verticalTextAlignment",
Visibility = "visibility"
};
Synopsis
Constructors
| TableCellStyleProperty() | The table cell style for a cell in pivot table or table visual. |
Properties
| BackgroundColor | The background color for the table cells. |
| Border | The borders for the table cells. |
| FontConfiguration | The font configuration of the table cells. |
| Height | The height color for the table cells. |
| HorizontalTextAlignment | The horizontal text alignment (left, center, right, auto) for the table cells. |
| TextWrap | The text wrap (none, wrap) for the table cells. |
| VerticalTextAlignment | The vertical text alignment (top, middle, bottom) for the table cells. |
| Visibility | The visibility of the table cells. |
Constructors
TableCellStyleProperty()
The table cell style for a cell in pivot table or table visual.
public TableCellStyleProperty()
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.Mixins.Preview.AWS.QuickSight.Mixins;
var tableCellStyleProperty = 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",
FontFamily = "fontFamily",
FontSize = new FontSizeProperty {
Absolute = "absolute",
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
},
Height = 123,
HorizontalTextAlignment = "horizontalTextAlignment",
TextWrap = "textWrap",
VerticalTextAlignment = "verticalTextAlignment",
Visibility = "visibility"
};
Properties
BackgroundColor
The background color for the table cells.
public string? BackgroundColor { get; set; }
Property Value
Remarks
Border
The borders for the table cells.
public object? Border { get; set; }
Property Value
Remarks
FontConfiguration
The font configuration of the table cells.
public object? FontConfiguration { get; set; }
Property Value
Remarks
Height
The height color for the table cells.
public double? Height { get; set; }
Property Value
Remarks
HorizontalTextAlignment
The horizontal text alignment (left, center, right, auto) for the table cells.
public string? HorizontalTextAlignment { get; set; }
Property Value
Remarks
TextWrap
The text wrap (none, wrap) for the table cells.
public string? TextWrap { get; set; }
Property Value
Remarks
VerticalTextAlignment
The vertical text alignment (top, middle, bottom) for the table cells.
public string? VerticalTextAlignment { get; set; }
Property Value
Remarks
Visibility
The visibility of the table cells.
public string? Visibility { get; set; }