ComponentOne SpellChecker for WinForms
C1.Win.C1SpellChecker.4.5.2 Assembly / C1.Win.C1SpellChecker Namespace / WordList Class / InsertItem Method
The zero-based index at which the new item should be inserted.
The item to insert into the list.

In This Topic
    InsertItem Method (WordList)
    In This Topic
    Inserts a word into the list at the specified index.
    Syntax
    'Declaration
     
    Protected Overrides Sub InsertItem( _
       ByVal index As System.Integer, _
       ByVal item As System.String _
    ) 
    protected override void InsertItem( 
       System.int index,
       System.string item
    )

    Parameters

    index
    The zero-based index at which the new item should be inserted.
    item
    The item to insert into the list.
    Remarks
    Duplicate items are automatically discarded; the list will contain at most one copy of any given string.
    See Also