Class XFormCollection

XFormCollection class

Class represents collection of XFormCollection.

public sealed class XFormCollection : ICollection<XForm>

Properties

NameDescription
Count { get; }Gets count of XForms in collection.
IsReadOnly { get; }Gets a value indicating whether the collection is read-only.
IsSynchronized { get; }Returns true if object is synchronized.
Item { get; }Returns XForm by index. (2 indexers)
SyncRoot { get; }Synchronization object.

Methods

NameDescription
Add(XForm)Adds new XForm into collection.
Clear()Clears all items from the collection.
Contains(XForm)Determines whether the collection contains a specific value.
CopyTo(XForm[], int)Copies XFormCollection into collection.
Delete()Deletes all XForms from collection.
Delete(int)Delete XForm from collectin
Delete(string)Deletes XForm from collection by form name.
GetEnumerator()Retunrs collection enumerator.
Remove(XForm)Deletes specified item from collection.

See Also