Collapses a group in a TreeView DataWindow that has the specified TreeView level and includes the specified row.
DataWindow type  | 
Method applies to  | 
|---|---|
PowerBuilder  | 
DataWindow control  | 
Integer dw_control.Collapse(long row, long groupLevel)
Argument  | 
Description  | 
|---|---|
dw_control  | 
A reference to a TreeView-style DataWindow control  | 
row  | 
The number of the row that belongs to the TreeView level of the group to be collapsed  | 
groupLevel  | 
The TreeView level of the group to be collapsed  | 
Returns 1 if the collapse operation succeeds and one of the following negative values if it fails:
A TreeView DataWindow has several TreeView level bands (groups) that can be expanded and collapsed. You can use the Collapse method to collapse a group in a TreeView DataWindow that includes a particular row in a particular TreeView level.
The Collapse method triggers the Collapsing and Collapsed events.
The following example collapses the group at TreeView level 2 that includes row 3:
integer li_ret li_ret = dw_treeview.Collapse(3,2)