Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns a value that indicates whether the tree control displays tree connector lines.
Syntax
public boolean hasLines([boolean value])
Run On
Client
Parameters
- value
Type: boolean
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);