In This Article

TabbedMdiWindowCollection Class

Stores a collection of TabbedMdiWindow objects.

public class TabbedMdiWindowCollection : SimpleReadOnlyCollection<TabbedMdiWindow>
Inheritance:
object ReadOnlyCollection<TabbedMdiWindow> SimpleReadOnlyCollection<TabbedMdiWindow> object

Constructors

TabbedMdiWindowCollection()

Stores a collection of TabbedMdiWindow objects.

public TabbedMdiWindowCollection()

Properties

this[string]

The TabbedMdiWindow with the specified key.

public TabbedMdiWindow? this[string key] { get; }
Parameter Type Description
key string

The key of the TabbedMdiWindow to return.

Property Value

TabbedMdiWindow

Methods

Contains(string)

Determines whether the a TabbedMdiWindow with the specified key is in the collection.

public virtual bool Contains(string key)
Parameter Type Description
key string

The key of the TabbedMdiWindow to look for.

Returns

bool:

true if the collection contains a TabbedMdiWindow with the specified key; otherwise, false.

IndexOf(string)

Returns the index of the TabbedMdiWindow with the specified key in the collection.

public int IndexOf(string key)
Parameter Type Description
key string

The key of the TabbedMdiWindow to look for.

Returns

int:

If found, the index where the TabbedMdiWindow is in the collection; otherwise, -1.

Inherited Members

Extension Methods