Class CfnThemePropsMixin.SheetStyleProperty
The theme display options for sheets.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnThemePropsMixin.SheetStyleProperty : CfnThemePropsMixin.ISheetStyleProperty
Syntax (vb)
Public Class CfnThemePropsMixin.SheetStyleProperty Implements CfnThemePropsMixin.ISheetStyleProperty
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.Mixins.Preview.AWS.QuickSight.Mixins;
var sheetStyleProperty = new SheetStyleProperty {
Tile = new TileStyleProperty {
Border = new BorderStyleProperty {
Show = false
}
},
TileLayout = new TileLayoutStyleProperty {
Gutter = new GutterStyleProperty {
Show = false
},
Margin = new MarginStyleProperty {
Show = false
}
}
};
Synopsis
Constructors
| SheetStyleProperty() | The theme display options for sheets. |
Properties
| Tile | The display options for tiles. |
| TileLayout | The layout options for tiles. |
Constructors
SheetStyleProperty()
The theme display options for sheets.
public SheetStyleProperty()
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.Mixins.Preview.AWS.QuickSight.Mixins;
var sheetStyleProperty = new SheetStyleProperty {
Tile = new TileStyleProperty {
Border = new BorderStyleProperty {
Show = false
}
},
TileLayout = new TileLayoutStyleProperty {
Gutter = new GutterStyleProperty {
Show = false
},
Margin = new MarginStyleProperty {
Show = false
}
}
};
Properties
Tile
The display options for tiles.
public object? Tile { get; set; }
Property Value
Remarks
TileLayout
The layout options for tiles.
public object? TileLayout { get; set; }