GoDigram for .NET Framework and .NET Core
Northwoods.Go.Layout Namespace / GoLayoutTreeNode Class / LayerSpacingParentOverlap Property
In This Topic
    LayerSpacingParentOverlap Property (GoLayoutTreeNode)
    In This Topic
    Gets or sets the fraction of this node's depth that may overlap with the children's layer.
    Syntax
    public float LayerSpacingParentOverlap {get; set;}

    Property Value

    Values must range from 0.0 to 1.0, where 1.0 means the full depth of this node. The default value is 0.0 -- there is overlap only if LayerSpacing is negative.
    Remarks
    When this value is greater than 0.0, there might not be overlap if LayerSpacing is larger than the depth of this node times this fraction. Even when this value is 0.0, there may be overlap when LayerSpacing is negative. This inherited property is initialized in the InitializeTreeNodeValues method.
    See Also