Search
UndoableCollection(T).TrackAdd Method
See Also
 






Adds the specified item to the collection. If undo is enabled, the item is added through a command. Otherwise, the item is added directly.

Namespace: MindFusion.Spreadsheet
Assembly: MindFusion.Spreadsheet.WinForms

 Syntax

C#  Copy Code

protected void TrackAdd (
    int index,
    T item
)

Visual Basic  Copy Code

Protected Sub TrackAdd( _
    index As Integer, _
    item As T _
)

 Parameters

index

A zero-based index specifying the position of the item in the collection.

item

The item to add.

 See Also