ComponentFactory.Krypton.Ribbon.KryptonRibbonGroupCluster.GetChildComponents C# (CSharp) Method

GetChildComponents() public method

Gets an array of all the contained components.
public GetChildComponents ( ) : System.ComponentModel.Component[]
return System.ComponentModel.Component[]
        public override Component[] GetChildComponents()
        {
            Component[] array = new Component[Items.Count];
            _ribbonClusterItems.CopyTo(array, 0);
            return array;
        }