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

ColumnRect() public method

Returns the bounding rectangle of the specified column in client coordinates
public ColumnRect ( Column column ) : Rectangle
column Column The column
return System.Drawing.Rectangle
        public Rectangle ColumnRect(Column column)
        {
            if (this.ColumnModel == null)
            {
                return Rectangle.Empty;
            }

            return this.ColumnRect(this.ColumnModel.Columns.IndexOf(column));
        }

Same methods

Table::ColumnRect ( int column ) : Rectangle
Table