Show / Hide Table of Contents

Interface CfnForm.ISectionalElementProperty

The SectionalElement property specifies the configuration information for a visual helper element for a form.

Namespace: Amazon.CDK.AWS.AmplifyUIBuilder
Assembly: Amazon.CDK.AWS.AmplifyUIBuilder.dll
Syntax (csharp)
public interface ISectionalElementProperty
Syntax (vb)
Public Interface ISectionalElementProperty
Remarks

A sectional element can be a header, a text block, or a divider. These elements are static and not associated with any data.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-sectionalelement.html

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.AmplifyUIBuilder;

var sectionalElementProperty = new SectionalElementProperty {
    Type = "type",

    // the properties below are optional
    Excluded = false,
    Level = 123,
    Orientation = "orientation",
    Position = new FieldPositionProperty {
        Below = "below",
        Fixed = "fixed",
        RightOf = "rightOf"
    },
    Text = "text"
};

Synopsis

Properties

Excluded

CfnForm.SectionalElementProperty.Excluded.

Level

Specifies the size of the font for a Heading sectional element.

Orientation

Specifies the orientation for a Divider sectional element.

Position

Specifies the position of the text in a field for a Text sectional element.

Text

The text for a Text sectional element.

Type

The type of sectional element.

Properties

Excluded

CfnForm.SectionalElementProperty.Excluded.

virtual object Excluded { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-sectionalelement.html#cfn-amplifyuibuilder-form-sectionalelement-excluded

Level

Specifies the size of the font for a Heading sectional element.

virtual Nullable<double> Level { get; }
Property Value

System.Nullable<System.Double>

Remarks

Valid values are 1 | 2 | 3 | 4 | 5 | 6 .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-sectionalelement.html#cfn-amplifyuibuilder-form-sectionalelement-level

Orientation

Specifies the orientation for a Divider sectional element.

virtual string Orientation { get; }
Property Value

System.String

Remarks

Valid values are horizontal or vertical .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-sectionalelement.html#cfn-amplifyuibuilder-form-sectionalelement-orientation

Position

Specifies the position of the text in a field for a Text sectional element.

virtual object Position { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-sectionalelement.html#cfn-amplifyuibuilder-form-sectionalelement-position

Text

The text for a Text sectional element.

virtual string Text { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-sectionalelement.html#cfn-amplifyuibuilder-form-sectionalelement-text

Type

The type of sectional element.

string Type { get; }
Property Value

System.String

Remarks

Valid values are Heading , Text , and Divider .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-form-sectionalelement.html#cfn-amplifyuibuilder-form-sectionalelement-type

Back to top Generated by DocFX