Class CfnAnalysis.SectionBasedLayoutPaperCanvasSizeOptionsProperty
The options for a paper canvas of a section-based layout.
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAnalysis.SectionBasedLayoutPaperCanvasSizeOptionsProperty : CfnAnalysis.ISectionBasedLayoutPaperCanvasSizeOptionsProperty
Syntax (vb)
Public Class CfnAnalysis.SectionBasedLayoutPaperCanvasSizeOptionsProperty Implements CfnAnalysis.ISectionBasedLayoutPaperCanvasSizeOptionsProperty
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 sectionBasedLayoutPaperCanvasSizeOptionsProperty = new SectionBasedLayoutPaperCanvasSizeOptionsProperty {
PaperMargin = new SpacingProperty {
Bottom = "bottom",
Left = "left",
Right = "right",
Top = "top"
},
PaperOrientation = "paperOrientation",
PaperSize = "paperSize"
};
Synopsis
Constructors
SectionBasedLayoutPaperCanvasSizeOptionsProperty() | The options for a paper canvas of a section-based layout. |
Properties
PaperMargin | Defines the spacing between the canvas content and the top, bottom, left, and right edges. |
PaperOrientation | The paper orientation that is used to define canvas dimensions. Choose one of the following options:. |
PaperSize | The paper size that is used to define canvas dimensions. |
Constructors
SectionBasedLayoutPaperCanvasSizeOptionsProperty()
The options for a paper canvas of a section-based layout.
public SectionBasedLayoutPaperCanvasSizeOptionsProperty()
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 sectionBasedLayoutPaperCanvasSizeOptionsProperty = new SectionBasedLayoutPaperCanvasSizeOptionsProperty {
PaperMargin = new SpacingProperty {
Bottom = "bottom",
Left = "left",
Right = "right",
Top = "top"
},
PaperOrientation = "paperOrientation",
PaperSize = "paperSize"
};
Properties
PaperMargin
Defines the spacing between the canvas content and the top, bottom, left, and right edges.
public object? PaperMargin { get; set; }
Property Value
Remarks
PaperOrientation
The paper orientation that is used to define canvas dimensions. Choose one of the following options:.
public string? PaperOrientation { get; set; }
Property Value
Remarks
PaperSize
The paper size that is used to define canvas dimensions.
public string? PaperSize { get; set; }