Determines whether subtrees overlap with their parent nodes in the orthogonal direction to their Orientation.

Namespace: TreeLayoutHelper.TreeLayout
Assembly: TreeLayoutHelper (in TreeLayoutHelper.dll) Version: 1.1.0.0 (1.1.0.0)

Syntax

C#
public bool NoOverlaps { get; set; }
Visual Basic
Public Property NoOverlaps As Boolean
	Get
	Set
Visual C++
public:
property bool NoOverlaps {
	bool get ();
	void set (bool value);
}
J#
/** @property */
public boolean get_NoOverlaps()
/** @property */
public  void set_NoOverlaps(boolean value)
JScript
function get NoOverlaps () : boolean
function set NoOverlaps (value : boolean)
JavaScript
function get_NoOverlaps();
function set_NoOverlaps(value);

Field Value

Gets or sets a value that determines whether subtrees overlap with their parent nodes in the orthogonal direction to their Orientation. When set to trueTruetruetrue (True in Visual Basic), the tree can be reduced to a single line (removing the different positioning of nodes on different levels) without any overlaps. The default value is falseFalsefalsefalse (False in Visual Basic).

See Also