Share via


FormTreeControl.hasLines Method

Returns a value that indicates whether the tree control displays tree connector lines.

Syntax

public boolean hasLines([boolean value])

Run On

Client

Parameters

Return Value

Type: boolean
true if the tree control displays tree connector lines; otherwise, false.

Examples

The following example shows how to retrieve the value that indicates whether the tree control displays tree connector lines.

boolean bHasLines; 
 
// Retrieve the value. 
bHasLines = this.hasLines(); 
info (strfmt("hasLines: %1", bHasLines)); 
 
// Set the value. 
this.hasLines(false);

See Also

FormTreeControl Class

Form Control Properties