GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoListGroup Class / LayoutChildren Method
the child object that was moved or resized
In This Topic
    LayoutChildren Method (GoListGroup)
    In This Topic
    Position each child starting at the top, according to the alignment, leaving space according to the spacing and drawn lines.
    Syntax
    public override void LayoutChildren( 
       GoObject childchanged
    )

    Parameters

    childchanged
    the child object that was moved or resized
    Remarks
    The first child is drawn at the top (smallest Y coordinate); the last one is at the bottom (largest Y coordinate). The actual amount of space between items is the larger of the Spacing value and the width of the LinePen. The actual positioning of each child item is performed by a call to LayoutItem. When GoObject.Initializing is true, this method does nothing. When Orientation is Horizontal instead of Vertical, the items are positioned from the left towards the right instead of top-down. This ignores child objects that are not GoObject.Visible.
    See Also