ListItems Element for ListEntry for ListControl (Format)
Defines the properties and scripts whose values are displayed in the rows of the list view.
Attributes and Elements
The following sections describe the attributes, child elements, and parent element of the ListItems element. There is no limit to the number of child elements that can be specified. The order of the child elements defines the order that values are displayed in the list view.
Attributes
None.
Child Elements
Element | Description |
|---|---|
Required element. Defines the property or script whose value is displayed by the list view. |
Parent Elements
Element | Description |
|---|---|
Provides a definition of the list view. |
For more information about this type of view, see Creating a List View.
Example
This example shows the XML elements that define three rows of the list view.
<ListEntry>
<ListItems>
<ListItem>
<Label>Property1: </Label>
<PropertyName>.NetTypeProperty1</PropertyName>
</ListItem>
<ListItem>
<PropertyName>.NetTypeProperty2</PropertyName>
</ListItem>
<ListItem>
<ScriptBlock>$_.ProcessName + “:” $_.Id</ScriptBlock>
</ListItem>
</ListEntry>
Show: