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

RowRect() public method

Returns the bounding rectangle of the specified row in client coordinates
public RowRect ( Row row ) : Rectangle
row Row The row
return Rectangle
        public Rectangle RowRect(Row row)
        {
            if (this.TableModel == null)
                return Rectangle.Empty;

            return this.RowRect(this.TableModel.Rows.IndexOf(row));
        }

Same methods

Table::RowRect ( int row ) : Rectangle
Table