Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.v4.3 Assembly / Xceed.Grid.Collections Namespace / CellViewerManagerDictionary Class / Add Method / Add(Type,CellViewerManager) Method
The key of the element to add.
The value of the element to add.


In This Topic
    Add(Type,CellViewerManager) Method
    In This Topic
    Adds an entry to the hashtable specifying the type (type) and Xceed.Grid.Viewers.CellViewerManager (cellViewerManager) that will be used to display the content of cells of the specified datatype.
    Syntax
    'Declaration
     
    Public Overloads Sub Add( _
       ByVal type As Type, _
       ByVal cellViewerManager As CellViewerManager _
    ) 
    'Usage
     
    Dim instance As CellViewerManagerDictionary
    Dim type As Type
    Dim cellViewerManager As CellViewerManager
     
    instance.Add(type, cellViewerManager)
    public void Add( 
       Type type,
       CellViewerManager cellViewerManager
    )

    Parameters

    type
    The key of the element to add.
    cellViewerManager
    The value of the element to add.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also