mlsoft.mct.MlGridPos

This object is used to identify a cell position in a Grid.

Its basic structure is:

public class MlGridPos
{
public int rowType;
public int row;
public int columnType;
public int column;
}

where rowType and columnType are one of MlGrid.HEADING, MlGrid.CONTENT or MlGrid.FOOTER to designate the type of row or column.