Show / Hide Table of Contents

Interface CfnTemplate.ISheetControlLayoutProperty

A grid layout to define the placement of sheet control.

Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.AWS.QuickSight.dll
Syntax (csharp)
public interface ISheetControlLayoutProperty
Syntax (vb)
Public Interface 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

Properties

Configuration

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

Properties

Configuration

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

object Configuration { get; }
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

Back to top Generated by DocFX