Class CfnDashboard.GridLayoutElementProperty
An element within a grid layout.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class GridLayoutElementProperty : Object, CfnDashboard.IGridLayoutElementProperty
Syntax (vb)
Public Class GridLayoutElementProperty
Inherits Object
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
ColumnIndex = 123,
RowIndex = 123
};
Synopsis
Constructors
Grid |
Properties
Column |
The column index for the upper left corner of an element. |
Column |
The width of a grid element expressed as a number of grid columns. |
Element |
A unique identifier for an element within a grid layout. |
Element |
The type of element. |
Row |
The row index for the upper left corner of an element. |
Row |
The height of a grid element expressed as a number of grid rows. |
Constructors
GridLayoutElementProperty()
public GridLayoutElementProperty()
Properties
ColumnIndex
The column index for the upper left corner of an element.
public Nullable<double> ColumnIndex { get; set; }
Property Value
System.
Remarks
ColumnSpan
The width of a grid element expressed as a number of grid columns.
public double ColumnSpan { get; set; }
Property Value
System.
Remarks
ElementId
A unique identifier for an element within a grid layout.
public string ElementId { get; set; }
Property Value
System.
Remarks
ElementType
The type of element.
public string ElementType { get; set; }
Property Value
System.
Remarks
RowIndex
The row index for the upper left corner of an element.
public Nullable<double> RowIndex { get; set; }
Property Value
System.
Remarks
RowSpan
The height of a grid element expressed as a number of grid rows.
public double RowSpan { get; set; }
Property Value
System.