[]
        
(Showing Draft Content)

C1.C1Preview.OwnedFastListBase

OwnedFastListBase Class

Represents FastList with owner object. Notifies the owner of interesting events on the collection if the owner supports the C1.C1Preview.ICollectionOwner interface.

Inheritance
OwnedFastListBase
Namespace: C1.C1Preview
Assembly: C1.PrintDocument.4.8.dll
Syntax
public class OwnedFastListBase : FastList, IList, ICollection, IEnumerable

Constructors

Name Description
OwnedFastListBase()

Initializes a new instance of the OwnedFastList class.

OwnedFastListBase(object)

Initializes a new instance of the OwnedFastList class.

Properties

Name Description
Owner

Gets the owner of collection.

Methods

Name Description
Clear()

Clears the current OwnedFastListBase.

Insert(int, object)

Inserts the element at the specified index.

OnClear()

Called when the list is about to be cleared.

OnClearComplete()

Called after the list has been cleared.

OnInsert(int, object)

Called when an item is about to be iserted.

OnInsertComplete(int, object)

Called after an item has been inserted.

OnRemove(int, object)

Called when an item is about to be removed.

OnRemoveComplete(int, object)

Called after an item has been removed.

RemoveAt(int)

Removes the specified element from the current list.