Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.v4.3 Assembly / Xceed.Grid Namespace / Cell Class / CellViewerManager Property


In This Topic
    CellViewerManager Property (Cell)
    In This Topic
    Gets or sets the Xceed.Grid.Viewers.CellViewerManager that will be used to view the content of the cell.
    Syntax
    'Declaration
     
    <BrowsableAttribute(False)>
    <DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)>
    Public Property CellViewerManager As CellViewerManager
    'Usage
     
    Dim instance As Cell
    Dim value As CellViewerManager
     
    instance.CellViewerManager = value
     
    value = instance.CellViewerManager
    [Browsable(false)]
    [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
    public CellViewerManager CellViewerManager {get; set;}

    Property Value

    A reference to a Xceed.Grid.Viewers.CellViewerManager that will be used to view the content of the cell. By default, DefaultCellViewerManager.
    Remarks

    If the CellViewerManager property has not been explicitly set, the parent column's Column.CellViewerManager will be used. If the parent column's CellViewerManager property has not been explicitly set, the default CellViewerManager for the cell's datatype will be used.

    Cell/Column Datatype Default CellViewerManager
    String None
    Boolean Xceed.Grid.Viewers.CheckBoxViewer
    DateTime Xceed.Grid.Viewers.DateViewer
    Image Xceed.Grid.Viewers.ImageViewer
    Numeric Xceed.Grid.Viewers.NumericViewer
    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