| Member | Description |
|---|---|
Constructor |
Constructor |
Add |
Adds a page to the collection public int Add( EPSTabPage page ); public sealed int Add( object value ); |
Clear |
Clears all pages from the collection public sealed void Clear(); |
Contains |
Defines whether the collection already contains this particular page public sealed bool Contains( object value ); |
CopyTo |
Not supported! public sealed void CopyTo( Array array, int index ); |
GetEnumerator |
Returns an enumerator public IEnumerator GetEnumerator(); |
IndexOf |
Returns the index of the page within the collection public sealed int IndexOf( object value ); |
Insert |
Inserts a page into the collection at the specified index public sealed void Insert( int index, object value ); |
Remove |
Removes the page from the collection public sealed void Remove( object value ); |
RemoveAt |
removes the page indicated by the index public sealed void RemoveAt( int index ); |
Count |
Page count |
IsFixedSize |
Is this collection fixed size? |
IsReadOnly |
Is this collection read only? |
IsSynchronized |
Not supported |
Item |
|
SyncRoot |
Sync root |