Share via


FormTreeControl.hasLines Method

Definition

Overloads

hasLines()

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

hasLines(Boolean)

hasLines()

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

public:
 virtual bool hasLines();
public virtual bool hasLines ();
abstract member hasLines : unit -> bool
override this.hasLines : unit -> bool
Public Overridable Function hasLines () As Boolean

Returns

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

Remarks

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

Applies to

hasLines(Boolean)

public:
 virtual bool hasLines(bool _value);
public virtual bool hasLines (bool _value);
abstract member hasLines : bool -> bool
override this.hasLines : bool -> bool
Public Overridable Function hasLines (_value As Boolean) As Boolean

Parameters

_value
Boolean

Returns

Applies to