C# Class SourceGrid.Cells.Cell

Represents a Cell in a grid, with Cell.Value support and row/col span. Support also ToolTipText, ContextMenu and Cursor
Inheritance: SourceGrid.Cells.Virtual.CellVirtual, ICell
Mostra file Open project: zhuangyy/Motion Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
BindToGrid ( Grid p_grid, Position p_Position ) : void

Link the cell at the specified grid. For internal use only.

Cell ( ) : System

Constructor

Cell ( object cellValue ) : System

Constructor

Cell ( object cellValue, Editors pEditor ) : System

Constructor

Cell ( object cellValue, Type pType ) : System

Constructor

ToString ( ) : string

ToString method

UnBindToGrid ( ) : void

Remove the link of the cell from the grid. For internal use only.

Protected Methods

Method Description
GetContext ( ) : CellContext

Method Details

BindToGrid() public method

Link the cell at the specified grid. For internal use only.
public BindToGrid ( Grid p_grid, Position p_Position ) : void
p_grid Grid
p_Position Position
return void

Cell() public method

Constructor
public Cell ( ) : System
return System

Cell() public method

Constructor
public Cell ( object cellValue ) : System
cellValue object
return System

Cell() public method

Constructor
public Cell ( object cellValue, Editors pEditor ) : System
cellValue object
pEditor Editors
return System

Cell() public method

Constructor
public Cell ( object cellValue, Type pType ) : System
cellValue object
pType System.Type
return System

GetContext() protected method

protected GetContext ( ) : CellContext
return CellContext

ToString() public method

ToString method
public ToString ( ) : string
return string

UnBindToGrid() public method

Remove the link of the cell from the grid. For internal use only.
public UnBindToGrid ( ) : void
return void