XPTable.Models.Table.CellRect C# (CSharp) Метод

CellRect() публичный Метод

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
Результат 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