Microsoft.Common.Section UI element

A control that groups one or more elements under a heading.

UI sample

Screenshot of Microsoft.Common.Section UI element with a heading and grouped elements.

Schema

{
  "name": "section1",
  "type": "Microsoft.Common.Section",
  "label": "Example section",
  "elements": [
    {
      "name": "text1",
      "type": "Microsoft.Common.TextBox",
      "label": "Example text box 1"
    },
    {
      "name": "text2",
      "type": "Microsoft.Common.TextBox",
      "label": "Example text box 2"
    }
  ],
  "visible": true
}

Remarks

  • elements must have at least one element, and can have all element types except Microsoft.Common.Section.
  • This element doesn't support the toolTip property.

Sample output

To access the output values of elements in elements, use the basics() or steps() functions and dot notation:

steps('configuration').section1.text1

Elements of type Microsoft.Common.Section have no output values themselves.

Next steps