Nevron .NET Vision
Nevron.UI.WinForm.Docking Namespace / NDockZoneChildCollection Class / GetNextNonEmptyChild Method
The child to start the search from.
True to go forward the specfied child, false to go backwards.
True to wrap(start from the beginning if the final child is reached), false otherwise.


In This Topic
    GetNextNonEmptyChild Method
    In This Topic
    Gets the next child (non-empty) in the collection.
    Syntax
    'Declaration
     
    
    Public Function GetNextNonEmptyChild( _
       ByVal child As INDockZoneChild, _
       ByVal forward As System.Boolean, _
       ByVal wrap As System.Boolean _
    ) As INDockZoneChild
    'Usage
     
    
    Dim instance As NDockZoneChildCollection
    Dim child As INDockZoneChild
    Dim forward As System.Boolean
    Dim wrap As System.Boolean
    Dim value As INDockZoneChild
     
    value = instance.GetNextNonEmptyChild(child, forward, wrap)
    public INDockZoneChild GetNextNonEmptyChild( 
       INDockZoneChild child,
       System.bool forward,
       System.bool wrap
    )

    Parameters

    child
    The child to start the search from.
    forward
    True to go forward the specfied child, false to go backwards.
    wrap
    True to wrap(start from the beginning if the final child is reached), false otherwise.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also