TreeView_SetIndent

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Modules > UI (User Interface) > CONTROLS > Control Types > TreeView Control > TreeView Control Commands >

TreeView_SetIndent

 

Description

 

Sets the height of the tree-view items for a tree-view control and redraws the control to reflect the new height.

 

Syntax

 

n = TreeView_SetItemHeight(hWnd, ctrlID, lHeight)

 

Returns

 

Number

 

Parameters

 

Name

Type

Optional

Meaning

hWnd

Number

No

Handle of the dialog containing the control

ctrlID

Number

No

Control identifier assigned to the control during CONTROL ADD ...

lHeight

Number

No

New height of every item in the tree view, in pixels.

 

Heights less than 1 will be set to 1.

 

If this argument is not even and the tree-view control does not have the %TVS_NONEVENHEIGHT style, this value will be rounded down to the nearest even value.

 

If this argument is -1, the control will revert to using its default item height.

 

Remarks

 

Restrictions

 

See also

 

Examples