ComponentFactory.Quicksilver.Layout.MetaPanelBase.GetVisualChild C# (CSharp) Method

GetVisualChild() protected method

Return child at the specified index from a collection of child elements.
protected GetVisualChild ( int index ) : Visual
index int Zero-based index of the requested child element.
return Visual
        protected override Visual GetVisualChild(int index)
        {
            if (index >= _children.ExternalCount)
                return _children.GetInternalChild(index - _children.ExternalCount);
            else
                return _children[index];
        }