Show / Hide Table of Contents

Class CfnDashboard.GridLayoutElementProperty

An element within a grid layout.

Inheritance
object
CfnDashboard.GridLayoutElementProperty
Implements
CfnDashboard.IGridLayoutElementProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-gridlayoutelement.html

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

GridLayoutElementProperty()

An element within a grid layout.

Properties

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.

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.

Constructors

GridLayoutElementProperty()

An element within a grid layout.

public GridLayoutElementProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-gridlayoutelement.html

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
             };

Properties

ColumnIndex

The column index for the upper left corner of an element.

public double? ColumnIndex { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-gridlayoutelement.html#cfn-quicksight-dashboard-gridlayoutelement-columnindex

ColumnSpan

The width of a grid element expressed as a number of grid columns.

public double ColumnSpan { get; set; }
Property Value

double

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-gridlayoutelement.html#cfn-quicksight-dashboard-gridlayoutelement-columnspan

ElementId

A unique identifier for an element within a grid layout.

public string ElementId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-gridlayoutelement.html#cfn-quicksight-dashboard-gridlayoutelement-elementid

ElementType

The type of element.

public string ElementType { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-gridlayoutelement.html#cfn-quicksight-dashboard-gridlayoutelement-elementtype

RowIndex

The row index for the upper left corner of an element.

public double? RowIndex { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-gridlayoutelement.html#cfn-quicksight-dashboard-gridlayoutelement-rowindex

RowSpan

The height of a grid element expressed as a number of grid rows.

public double RowSpan { get; set; }
Property Value

double

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-gridlayoutelement.html#cfn-quicksight-dashboard-gridlayoutelement-rowspan

Implements

CfnDashboard.IGridLayoutElementProperty
Back to top Generated by DocFX