ShowConnectLines

Description

Whether connecting lines display to connect parents and children in the DataWindow object.

Applies to

TreeView DataWindows

Syntax

PowerBuilder dot notation:

dw_control.Object.DataWindow.Tree.ShowConnectLines

Describe and Modify argument:

"DataWindow.Tree.ShowConnectLines{ = value }"

Parameter

Description

value

A boolean value that indicates whether lines connecting parents and children display in the DataWindow object. Values are:

  • Yes – Display connecting lines (default).

  • No – Do not display connecting lines.

Usage


In the painter

Select the Show Lines check box on the General page in the Properties view. If you want to show lines connecting rows in the detail band to their parent, you must also select ShowLeafNodeConnectLines.

Examples

Example 1

[Visual Basic]
lb_ShowLines =   &
   dw_1.Object.DataWindow.Tree.ShowConnectLines
dw_1.Object.DataWindow.Tree.ShowConnectLines='yes'