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


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

    Parameters

    key
    The key of the element to add.
    value
    The value of the element to add. The value must be a Xceed.Grid.Viewers.CellViewerManager instance.
    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