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

ColumnIndexAt() public method

Returns the index of the Column at the specified client point
public ColumnIndexAt ( Point p ) : int
p Point The point of interest
return int
        public int ColumnIndexAt(Point p)
        {
            return this.ColumnIndexAt(p.X, p.Y);
        }

Same methods

Table::ColumnIndexAt ( int x, int y ) : int
Table