Skip to main content

SectionDetails

Properties

NameTypeDescriptionNotes
NameStringName of the FormItem[optional]
LabelStringLabel of the section[optional]
FormItems[]SystemCollectionsHashtableList of FormItems. FormItems can be SectionDetails and/or FieldDetails[optional]

Examples

  • Prepare the resource
$SectionDetails = Initialize-SectionDetails  -Name Field1 `
-Label Section 1 `
-FormItems []
  • Convert the resource to JSON
$SectionDetails | ConvertTo-JSON

[Back to top]