FormTreeControl.hasLines Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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);