New to Telerik UI for WinFormsStart a free 30-day trial

Represents a custom control collection for the RadSplitContainer that only accepts SplitPanel controls.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.UI.dll

Syntax:

C#
public class RadSplitContainer.ControlCollection : Control.ControlCollection, IList, ICollection, IEnumerable, ICloneable

Inheritance: objectArrangedElementCollectionControl.ControlCollectionRadSplitContainer.ControlCollection

Implements: ICloneableICollectionIEnumerableIList

Inherited Members ArrangedElementCollection.Equals(object)ArrangedElementCollection.GetHashCode()ArrangedElementCollection.CopyTo(Array, int)ArrangedElementCollection.GetEnumerator()ArrangedElementCollection.IsReadOnlyArrangedElementCollection.Count...

Constructors

Initializes a new instance of the RadSplitContainer.ControlCollection class.

C#
public ControlCollection(RadSplitContainer owner)
Parameters:ownerRadSplitContainer

The RadSplitContainer that owns this collection.

Methods

Adds a control to the collection. Only SplitPanel controls are accepted.

C#
public override void Add(Control value)
Parameters:valueControl

The control to add to the collection.

Overrides: Control.ControlCollection.Add(Control)

Sets the child index of the specified control to the specified index.

C#
public override void SetChildIndex(Control child, int newIndex)
Parameters:childControl

The child control to set the index for.

newIndexint

The new index for the child control.

Overrides: Control.ControlCollection.SetChildIndex(Control, int)