WindowGetAttrList Function

Action

Returns the values for all the attributes of the specified window.

Syntax

laAttrs = WindowGetAttrList (wWindow)
Variable Description
laAttrs The attribute values returned for this window. LIST OF ANYTYPE.
wWindow The window for which you want attributes. WINDOW.

Notes

Use WindowGetAttrList to get the current values for all the attributes of the wWindow object. The available attributes include all those inherited from parent classes. See attribute declaration for the layout of the returned list items.

Example

// Get the attributes for the Find dialog box
LIST OF ANYTYPE laFindWhatAttrs
laFindWhatAttrs = WindowGetAttrList(TextEditor.Search.Find)