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

Definition

Constructors

C#
public RadTabbedFormControlTabCollection(RadTabbedFormControl owner)
Parameters:ownerRadTabbedFormControl

Properties

Gets the number of elements in the collection.

C#
public int Count { get; }

Implements: ICollection.Count

Indicates the System.Windows.Forms.Control at the specified indexed location in the collection.

C#
public RadTabbedFormControlTab this[int index] { get; set; }
Parameters:indexint

The index of the control to retrieve from the control collection.

Property Value:

The RadTabbedFormControlTab located at the specified index location within the control collection.

Indicates a RadTabbedFormControlTab with the specified name in the collection.

C#
public RadTabbedFormControlTab this[string name] { get; }
Parameters:namestring

The name of the tab to retrieve from the control collection.

Property Value:

The RadTabbedFormControlTab with the specified name within the RadTabbedFormControlCollection.

Methods

Adds the specified tab to the Tabs collection.

C#
public void Add(RadTabbedFormControlTab item)
Parameters:itemRadTabbedFormControlTab

The RadTabbedFormControlTab to add to the control collection.

Sets the index of the specified child control in the collection to the specified index value.

C#
public void ChangeIndex(RadTabbedFormControlTab tab, int newIndex)
Parameters:tabRadTabbedFormControlTabnewIndexint

Removes all tabs from the collection.

C#
public void Clear()

Implements: IList.Clear()

Checks for a particular tab if it is part of the collection.

C#
public bool Contains(RadTabbedFormControlTab item)
Parameters:itemRadTabbedFormControlTab

The RadTabbedFormControlTab to check if contained.

Returns:

bool

True if the collection contains the tab; otherwise false.

Checks by name if a particular tab is part of the collection.

C#
public bool Contains(string name, bool ignoreCase)
Parameters:namestring

The name to check the collection.

ignoreCasebool

Specifies whether the casing will be ignored.

Returns:

bool

True if the collection contains the name; otherwise false.

Checks by name if a particular tab is part of the collection.

C#
public bool Contains(string name)
Parameters:namestring

The name to check the collection. Performs case insensitive "Contains".

Returns:

bool

True if the collection contains the name; otherwise false.

Copies the entire contents of this collection to a compatible one-dimensional System.Array, starting at the specified index of the target array.

C#
public void CopyTo(RadTabbedFormControlTab[] array, int arrayIndex)
Parameters:arrayRadTabbedFormControlTab[]

The one-dimensional System.Array that is the destination of the elements copied from the current collection. The array must have zero-based indexing.

arrayIndexint

The zero-based index in array at which copying begins.

C#
public IEnumerator<RadTabbedFormControlTab> GetEnumerator()
Returns:

IEnumerator<RadTabbedFormControlTab>

Retrieves the index of the specified tab in the tabs collection.

C#
public int IndexOf(RadTabbedFormControlTab item)
Parameters:itemRadTabbedFormControlTab

The RadTabbedFormControlTab to locate in the collection.

Returns:

int

A zero-based index value that represents the position of the specified RadTabbedFormControlTab in the RadTabbedFormControlCollection.

Inserts the specified item at a given index in the RadTabbedFormControlCollection.

C#
public void Insert(int index, RadTabbedFormControlTab item)
Parameters:indexint

The index at which the RadTabbedFormControlTab will be inserted.

itemRadTabbedFormControlTab

The RadTabbedFormControlTab to be inserted in the collection.

Removes the specified tab from the tabs collection.

C#
public bool Remove(RadTabbedFormControlTab item)
Parameters:itemRadTabbedFormControlTab

The RadTabbedFormControlTab to remove from the RadTabbedFormControlCollection.

Returns:

bool

Removes a RadTabbedFormControlTab from the collection at the specified indexed location.

C#
public void RemoveAt(int index)
Parameters:indexint

The index value of the RadTabbedFormControlTab to remove.

Implements: IList.RemoveAt(int)

Swaps the positions of the two tabs inside the RadTabbedFormControlCollection.

C#
public void Swap(RadTabbedFormControlTab tab1, RadTabbedFormControlTab tab2)
Parameters:tab1RadTabbedFormControlTabtab2RadTabbedFormControlTab