Show / Hide Table of Contents

Class CfnForm.SectionalElementProperty

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

Inheritance
System.Object
CfnForm.SectionalElementProperty
Implements
CfnForm.ISectionalElementProperty
Namespace: Amazon.CDK.AWS.AmplifyUIBuilder
Assembly: Amazon.CDK.AWS.AmplifyUIBuilder.dll
Syntax (csharp)
public class SectionalElementProperty : Object, CfnForm.ISectionalElementProperty
Syntax (vb)
Public Class SectionalElementProperty
    Inherits Object
    Implements CfnForm.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

Constructors

SectionalElementProperty()

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.

Constructors

SectionalElementProperty()

public SectionalElementProperty()

Properties

Excluded

CfnForm.SectionalElementProperty.Excluded.

public object Excluded { get; set; }
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.

public Nullable<double> Level { get; set; }
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.

public string Orientation { get; set; }
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.

public object Position { get; set; }
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.

public string Text { get; set; }
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.

public string Type { get; set; }
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

Implements

CfnForm.ISectionalElementProperty
Back to top Generated by DocFX