XPTable.Models.Table.CellRect C# (CSharp) Method

CellRect() public method

Returns a Rectangle that specifies the size and location the cell at the specified cell position in client coordinates
public CellRect ( XPTable.Models.CellPos cellPos ) : Rectangle
cellPos XPTable.Models.CellPos The position of the cell
return System.Drawing.Rectangle
        public Rectangle CellRect(CellPos cellPos)
        {
            return this.CellRect(cellPos.Row, cellPos.Column);
        }

Same methods

Table::CellRect ( Cell cell ) : Rectangle
Table::CellRect ( int row, int column ) : Rectangle
Table