GetItemPropList Function

Class

HtmlList.

Action

Returns the names of all properties of a list item.

Availability

This functionality is supported only if you are using the Classic Agent.

Syntax

lsPropList = list.GetItemPropList()
Variable Description
lsPropList The list of properties. LIST OF STRING.

Notes

GetItemPropList returns a list of all properties for a list item. You can pass these names to GetItemProp.

Example

This example uses the list of used technologies in the About This Site page of the GMO Web application.

LIST OF STRING lsProps
lsProps = AboutPage.UsedList.GetItemPropList()
ListPrint(lsProps)

// Result:
// $BackColor
// $FontName
// $FontSize
// $FontStyle
// $TextColor