Microsoft.Common.Section UI 元素

一个将一个或多个元素分组到同一标题下的控件。

UI 示例

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

架构

{
  "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
}

备注

  • elements 必须至少具有一个元素,并且可以具有除 Microsoft.Common.Section 之外的所有元素类型。
  • 此元素不支持 toolTip 属性。

示例输出

若要访问 elements 中的元素的输出值,请使用 basics()steps() 函数和点表示法:

steps('configuration').section1.text1

Microsoft.Common.Section 类型的元素本身没有输出值。

后续步骤