Show / Hide Table of Contents

Class CfnTemplate.SheetControlLayoutProperty

A grid layout to define the placement of sheet control.

Inheritance
System.Object
CfnTemplate.SheetControlLayoutProperty
Implements
CfnTemplate.ISheetControlLayoutProperty
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.AWS.QuickSight.dll
Syntax (csharp)
public class SheetControlLayoutProperty : Object, CfnTemplate.ISheetControlLayoutProperty
Syntax (vb)
Public Class SheetControlLayoutProperty
    Inherits Object
    Implements CfnTemplate.ISheetControlLayoutProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetcontrollayout.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 sheetControlLayoutProperty = new SheetControlLayoutProperty {
    Configuration = new SheetControlLayoutConfigurationProperty {
        GridLayout = new GridLayoutConfigurationProperty {
            Elements = new [] { new GridLayoutElementProperty {
                ColumnSpan = 123,
                ElementId = "elementId",
                ElementType = "elementType",
                RowSpan = 123,

                // the properties below are optional
                ColumnIndex = 123,
                RowIndex = 123
            } },

            // the properties below are optional
            CanvasSizeOptions = new GridLayoutCanvasSizeOptionsProperty {
                ScreenCanvasSizeOptions = new GridLayoutScreenCanvasSizeOptionsProperty {
                    ResizeOption = "resizeOption",

                    // the properties below are optional
                    OptimizedViewPortWidth = "optimizedViewPortWidth"
                }
            }
        }
    }
};

Synopsis

Constructors

SheetControlLayoutProperty()

Properties

Configuration

The configuration that determines the elements and canvas size options of sheet control.

Constructors

SheetControlLayoutProperty()

public SheetControlLayoutProperty()

Properties

Configuration

The configuration that determines the elements and canvas size options of sheet control.

public object Configuration { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetcontrollayout.html#cfn-quicksight-template-sheetcontrollayout-configuration

Implements

CfnTemplate.ISheetControlLayoutProperty
Back to top Generated by DocFX