Class CfnTemplatePropsMixin.FreeFormLayoutElementProperty
An element within a free-form layout.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnTemplatePropsMixin.FreeFormLayoutElementProperty : CfnTemplatePropsMixin.IFreeFormLayoutElementProperty
Syntax (vb)
Public Class CfnTemplatePropsMixin.FreeFormLayoutElementProperty Implements CfnTemplatePropsMixin.IFreeFormLayoutElementProperty
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 freeFormLayoutElementProperty = new FreeFormLayoutElementProperty {
BackgroundStyle = new FreeFormLayoutElementBackgroundStyleProperty {
Color = "color",
Visibility = "visibility"
},
BorderStyle = new FreeFormLayoutElementBorderStyleProperty {
Color = "color",
Visibility = "visibility"
},
ElementId = "elementId",
ElementType = "elementType",
Height = "height",
LoadingAnimation = new LoadingAnimationProperty {
Visibility = "visibility"
},
RenderingRules = new [] { new SheetElementRenderingRuleProperty {
ConfigurationOverrides = new SheetElementConfigurationOverridesProperty {
Visibility = "visibility"
},
Expression = "expression"
} },
SelectedBorderStyle = new FreeFormLayoutElementBorderStyleProperty {
Color = "color",
Visibility = "visibility"
},
Visibility = "visibility",
Width = "width",
XAxisLocation = "xAxisLocation",
YAxisLocation = "yAxisLocation"
};
Synopsis
Constructors
| FreeFormLayoutElementProperty() | An element within a free-form layout. |
Properties
| BackgroundStyle | The background style configuration of a free-form layout element. |
| BorderStyle | The border style configuration of a free-form layout element. |
| ElementId | A unique identifier for an element within a free-form layout. |
| ElementType | The type of element. |
| Height | The height of an element within a free-form layout. |
| LoadingAnimation | The loading animation configuration of a free-form layout element. |
| RenderingRules | The rendering rules that determine when an element should be displayed within a free-form layout. |
| SelectedBorderStyle | The border style configuration of a free-form layout element. |
| Visibility | The visibility of an element within a free-form layout. |
| Width | The width of an element within a free-form layout. |
| XAxisLocation | The x-axis coordinate of the element. |
| YAxisLocation | The y-axis coordinate of the element. |
Constructors
FreeFormLayoutElementProperty()
An element within a free-form layout.
public FreeFormLayoutElementProperty()
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 freeFormLayoutElementProperty = new FreeFormLayoutElementProperty {
BackgroundStyle = new FreeFormLayoutElementBackgroundStyleProperty {
Color = "color",
Visibility = "visibility"
},
BorderStyle = new FreeFormLayoutElementBorderStyleProperty {
Color = "color",
Visibility = "visibility"
},
ElementId = "elementId",
ElementType = "elementType",
Height = "height",
LoadingAnimation = new LoadingAnimationProperty {
Visibility = "visibility"
},
RenderingRules = new [] { new SheetElementRenderingRuleProperty {
ConfigurationOverrides = new SheetElementConfigurationOverridesProperty {
Visibility = "visibility"
},
Expression = "expression"
} },
SelectedBorderStyle = new FreeFormLayoutElementBorderStyleProperty {
Color = "color",
Visibility = "visibility"
},
Visibility = "visibility",
Width = "width",
XAxisLocation = "xAxisLocation",
YAxisLocation = "yAxisLocation"
};
Properties
BackgroundStyle
The background style configuration of a free-form layout element.
public object? BackgroundStyle { get; set; }
Property Value
Remarks
BorderStyle
The border style configuration of a free-form layout element.
public object? BorderStyle { get; set; }
Property Value
Remarks
ElementId
A unique identifier for an element within a free-form layout.
public string? ElementId { get; set; }
Property Value
Remarks
ElementType
The type of element.
public string? ElementType { get; set; }
Property Value
Remarks
Height
The height of an element within a free-form layout.
public string? Height { get; set; }
Property Value
Remarks
LoadingAnimation
The loading animation configuration of a free-form layout element.
public object? LoadingAnimation { get; set; }
Property Value
Remarks
RenderingRules
The rendering rules that determine when an element should be displayed within a free-form layout.
public object? RenderingRules { get; set; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnTemplatePropsMixin.ISheetElementRenderingRuleProperty)[]
SelectedBorderStyle
The border style configuration of a free-form layout element.
public object? SelectedBorderStyle { get; set; }
Property Value
Remarks
This border style is used when the element is selected.
Type union: either IResolvable or CfnTemplatePropsMixin.IFreeFormLayoutElementBorderStyleProperty
Visibility
The visibility of an element within a free-form layout.
public string? Visibility { get; set; }
Property Value
Remarks
Width
The width of an element within a free-form layout.
public string? Width { get; set; }
Property Value
Remarks
XAxisLocation
The x-axis coordinate of the element.
public string? XAxisLocation { get; set; }
Property Value
Remarks
YAxisLocation
The y-axis coordinate of the element.
public string? YAxisLocation { get; set; }