Class CfnDashboard.GridLayoutElementProperty
An element within a grid layout.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDashboard.GridLayoutElementProperty : CfnDashboard.IGridLayoutElementProperty
Syntax (vb)
Public Class CfnDashboard.GridLayoutElementProperty Implements CfnDashboard.IGridLayoutElementProperty
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 gridLayoutElementProperty = new GridLayoutElementProperty {
ColumnSpan = 123,
ElementId = "elementId",
ElementType = "elementType",
RowSpan = 123,
// the properties below are optional
BackgroundStyle = new GridLayoutElementBackgroundStyleProperty {
Color = "color",
Visibility = "visibility"
},
BorderRadius = "borderRadius",
BorderStyle = new GridLayoutElementBorderStyleProperty {
Color = "color",
Visibility = "visibility",
Width = "width"
},
ColumnIndex = 123,
LoadingAnimation = new LoadingAnimationProperty {
Visibility = "visibility"
},
Padding = "padding",
RowIndex = 123,
SelectedBorderStyle = new GridLayoutElementBorderStyleProperty {
Color = "color",
Visibility = "visibility",
Width = "width"
}
};
Synopsis
Constructors
| GridLayoutElementProperty() | An element within a grid layout. |
Properties
| BackgroundStyle | The background style configuration of a grid layout element. |
| BorderRadius | The border radius of a grid layout element. |
| BorderStyle | The border style configuration of a grid layout element. |
| ColumnIndex | The column index for the upper left corner of an element. |
| ColumnSpan | The width of a grid element expressed as a number of grid columns. |
| ElementId | A unique identifier for an element within a grid layout. |
| ElementType | The type of element. |
| LoadingAnimation | An element within a grid layout. |
| Padding | The padding of a grid layout element. |
| RowIndex | The row index for the upper left corner of an element. |
| RowSpan | The height of a grid element expressed as a number of grid rows. |
| SelectedBorderStyle | The border style configuration of a grid layout element. |
Constructors
GridLayoutElementProperty()
An element within a grid layout.
public GridLayoutElementProperty()
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 gridLayoutElementProperty = new GridLayoutElementProperty {
ColumnSpan = 123,
ElementId = "elementId",
ElementType = "elementType",
RowSpan = 123,
// the properties below are optional
BackgroundStyle = new GridLayoutElementBackgroundStyleProperty {
Color = "color",
Visibility = "visibility"
},
BorderRadius = "borderRadius",
BorderStyle = new GridLayoutElementBorderStyleProperty {
Color = "color",
Visibility = "visibility",
Width = "width"
},
ColumnIndex = 123,
LoadingAnimation = new LoadingAnimationProperty {
Visibility = "visibility"
},
Padding = "padding",
RowIndex = 123,
SelectedBorderStyle = new GridLayoutElementBorderStyleProperty {
Color = "color",
Visibility = "visibility",
Width = "width"
}
};
Properties
BackgroundStyle
The background style configuration of a grid layout element.
public object? BackgroundStyle { get; set; }
Property Value
Remarks
BorderRadius
The border radius of a grid layout element.
public string? BorderRadius { get; set; }
Property Value
Remarks
BorderStyle
The border style configuration of a grid layout element.
public object? BorderStyle { get; set; }
Property Value
Remarks
ColumnIndex
The column index for the upper left corner of an element.
public double? ColumnIndex { get; set; }
Property Value
Remarks
ColumnSpan
The width of a grid element expressed as a number of grid columns.
public double ColumnSpan { get; set; }
Property Value
Remarks
ElementId
A unique identifier for an element within a grid layout.
public string ElementId { get; set; }
Property Value
Remarks
ElementType
The type of element.
public string ElementType { get; set; }
Property Value
Remarks
LoadingAnimation
An element within a grid layout.
public object? LoadingAnimation { get; set; }
Property Value
Remarks
Padding
The padding of a grid layout element.
public string? Padding { get; set; }
Property Value
Remarks
RowIndex
The row index for the upper left corner of an element.
public double? RowIndex { get; set; }
Property Value
Remarks
RowSpan
The height of a grid element expressed as a number of grid rows.
public double RowSpan { get; set; }
Property Value
Remarks
SelectedBorderStyle
The border style configuration of a grid layout element.
public object? SelectedBorderStyle { get; set; }
Property Value
Remarks
This border style is used when the element is selected.
Type union: either IResolvable or CfnDashboard.IGridLayoutElementBorderStyleProperty