Class CfnLayoutPropsMixin.SectionProperty
This represents a sections within a panel or tab of the page layout.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Cases.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnLayoutPropsMixin.SectionProperty : CfnLayoutPropsMixin.ISectionProperty
Syntax (vb)
Public Class CfnLayoutPropsMixin.SectionProperty Implements CfnLayoutPropsMixin.ISectionProperty
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.Cases.Mixins;
var sectionProperty = new SectionProperty {
FieldGroup = new FieldGroupProperty {
Fields = new [] { new FieldItemProperty {
Id = "id"
} },
Name = "name"
}
};
Synopsis
Constructors
| SectionProperty() | This represents a sections within a panel or tab of the page layout. |
Properties
| FieldGroup | Consists of a group of fields and associated properties. |
Constructors
SectionProperty()
This represents a sections within a panel or tab of the page layout.
public SectionProperty()
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.Cases.Mixins;
var sectionProperty = new SectionProperty {
FieldGroup = new FieldGroupProperty {
Fields = new [] { new FieldItemProperty {
Id = "id"
} },
Name = "name"
}
};
Properties
FieldGroup
Consists of a group of fields and associated properties.
public object? FieldGroup { get; set; }