Class CfnAnalysisPropsMixin.SpacingProperty
The configuration of spacing (often a margin or padding).
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnAnalysisPropsMixin.SpacingProperty : CfnAnalysisPropsMixin.ISpacingProperty
Syntax (vb)
Public Class CfnAnalysisPropsMixin.SpacingProperty Implements CfnAnalysisPropsMixin.ISpacingProperty
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 spacingProperty = new SpacingProperty {
Bottom = "bottom",
Left = "left",
Right = "right",
Top = "top"
};
Synopsis
Constructors
| SpacingProperty() | The configuration of spacing (often a margin or padding). |
Properties
| Bottom | Define the bottom spacing. |
| Left | Define the left spacing. |
| Right | Define the right spacing. |
| Top | Define the top spacing. |
Constructors
SpacingProperty()
The configuration of spacing (often a margin or padding).
public SpacingProperty()
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 spacingProperty = new SpacingProperty {
Bottom = "bottom",
Left = "left",
Right = "right",
Top = "top"
};
Properties
Bottom
Define the bottom spacing.
public string? Bottom { get; set; }
Property Value
Remarks
Left
Define the left spacing.
public string? Left { get; set; }
Property Value
Remarks
Right
Define the right spacing.
public string? Right { get; set; }
Property Value
Remarks
Top
Define the top spacing.
public string? Top { get; set; }