ComponentFactory.Quicksilver.Layout.MetaElementCollection.CopyTo C# (CSharp) Method

CopyTo() public method

Copies the elements from the collection to the element array.
public CopyTo ( UIElement array, int index ) : void
array UIElement UIElement that is the destination for copying.
index int Zero-based index in the array at which copying begins.
return void
        public override void CopyTo(UIElement[] array, int index)
        {
            if (_isItemsHost)
                base.CopyTo(array, index);
            else
                _externalChildren.CopyTo(array, index);
        }

Same methods

MetaElementCollection::CopyTo ( Array array, int index ) : void