TableCellCollection.Insert(Int32, TableCell) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Inserts a specified item in the collection at a specified index position.
public:
virtual void Insert(int index, System::Windows::Documents::TableCell ^ item);
public void Insert (int index, System.Windows.Documents.TableCell item);
abstract member Insert : int * System.Windows.Documents.TableCell -> unit
override this.Insert : int * System.Windows.Documents.TableCell -> unit
Public Sub Insert (index As Integer, item As TableCell)
Parameters
- index
- Int32
A zero-based index that specifies the position in the collection at which to insert item
.
- item
- TableCell
An item to insert into the collection.
Implements
Exceptions
Raised when index
is less than 0.
Raised when item
is null.
Remarks
If Count equals Capacity for this collection, the collection capacity is increased automatically before the new item is inserted. Set index
equal to the value of Count to append a new collection item to the collection.
Indices for existing collection items might be adjusted to accommodate the newly inserted collection item.