Class CfnAnalysis.FreeFormLayoutElementProperty
An element within a free-form layout.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class FreeFormLayoutElementProperty : Object, CfnAnalysis.IFreeFormLayoutElementProperty
Syntax (vb)
Public Class FreeFormLayoutElementProperty
Inherits Object
Implements CfnAnalysis.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.AWS.QuickSight;
var freeFormLayoutElementProperty = new FreeFormLayoutElementProperty {
ElementId = "elementId",
ElementType = "elementType",
Height = "height",
Width = "width",
XAxisLocation = "xAxisLocation",
YAxisLocation = "yAxisLocation",
// the properties below are optional
BackgroundStyle = new FreeFormLayoutElementBackgroundStyleProperty {
Color = "color",
Visibility = "visibility"
},
BorderStyle = new FreeFormLayoutElementBorderStyleProperty {
Color = "color",
Visibility = "visibility"
},
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"
};
Synopsis
Constructors
Free |
Properties
Background |
The background style configuration of a free-form layout element. |
Border |
The border style configuration of a free-form layout element. |
Element |
A unique identifier for an element within a free-form layout. |
Element |
The type of element. |
Height | The height of an element within a free-form layout. |
Loading |
The loading animation configuration of a free-form layout element. |
Rendering |
The rendering rules that determine when an element should be displayed within a free-form layout. |
Selected |
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. |
XAxis |
The x-axis coordinate of the element. |
YAxis |
The y-axis coordinate of the element. |
Constructors
FreeFormLayoutElementProperty()
public FreeFormLayoutElementProperty()
Properties
BackgroundStyle
The background style configuration of a free-form layout element.
public object BackgroundStyle { get; set; }
Property Value
System.
Remarks
BorderStyle
The border style configuration of a free-form layout element.
public object BorderStyle { get; set; }
Property Value
System.
Remarks
ElementId
A unique identifier for an element within a free-form layout.
public string ElementId { get; set; }
Property Value
System.
Remarks
ElementType
The type of element.
public string ElementType { get; set; }
Property Value
System.
Remarks
Height
The height of an element within a free-form layout.
public string Height { get; set; }
Property Value
System.
Remarks
LoadingAnimation
The loading animation configuration of a free-form layout element.
public object LoadingAnimation { get; set; }
Property Value
System.
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
System.
Remarks
SelectedBorderStyle
The border style configuration of a free-form layout element.
public object SelectedBorderStyle { get; set; }
Property Value
System.
Remarks
This border style is used when the element is selected.
Visibility
The visibility of an element within a free-form layout.
public string Visibility { get; set; }
Property Value
System.
Remarks
Width
The width of an element within a free-form layout.
public string Width { get; set; }
Property Value
System.
Remarks
XAxisLocation
The x-axis coordinate of the element.
public string XAxisLocation { get; set; }
Property Value
System.
Remarks
YAxisLocation
The y-axis coordinate of the element.
public string YAxisLocation { get; set; }
Property Value
System.