FormTreeControl.hasLines Method [AX 2012]

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

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.

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);

Community Additions

ADD
Show: