Tree.Level.#.property

Description

The file name of the icon for a TreeView node in a TreeView level band when the icon is in either the expanded or collapsed state. You set the icon file name separately for each TreeView level band.

Applies to

TreeView DataWindows

Syntax

Describe and Modify argument:

"DataWindow.Tree.Level.#.property { = value } “

Parameter

Description

#

The number of the level for which you want to specify an icon. The level number must exist.

property

A property that indicates whether the icon specified is for the expanded or collapsed state. Values are:

  • CollapsedTreeNodeIconName

  • ExpandedTreeNodeIconName

value

(exp) A string value that is the file name of the tree node icon in the selected TreeView level band.

Value can be a quoted DataWindow expression.

Usage


In the painter

Select the level by clicking the gray divider for the band. Specify a file name and location in the Collapsed Tree Node Icon File and Expanded Tree Node Icon File boxes on the General tab in the Properties view for the band. These properties are disabled ifUse Tree Node Icon is not selected on the General tab in the Properties view for the DataWindow.

You cannot get or set these properties using dot notation.

For a TreeView Web DataWindow, the image files must be deployed to the Web site.

Examples

Example 1

The following example gets the name of the icon used when a level 1 node is collapsed:

string ls_ico

ls_ico = dw_tview.Describe  &
 ("DataWindow.Tree.Level.1.CollapsedTreeNodeIconName")