Share via


SyncList<TListType>.SetItem Method (Int32, TListType)

 

This API supports the product infrastructure and is not intended to be used directly from your code.

Replaces the element at the specified index.

Namespace:   Microsoft.Reporting.WinForms
Assembly:  Microsoft.ReportViewer.WinForms (in Microsoft.ReportViewer.WinForms.dll)

Syntax

protected override void SetItem(
    int index,
    TListType item
)
protected:
virtual void SetItem(
    int index,
    TListType item
) override
override SetItem : 
        index:int *
        item:'TListType -> unit
Protected Overrides Sub SetItem (
    index As Integer,
    item As TListType
)

Parameters

  • index
    Type: System.Int32

    The zero-based index of the element to replace.

  • item
    Type: TListType

    The new value for the element at the specified index.

See Also

SyncList<TListType> Class
Microsoft.Reporting.WinForms Namespace

Return to top