Programming Guide |
Interface definition for grids
public interface GridInterface extends WidgetInterface
getColumn
FieldInterface getColumn(int n);
num_columns
int numColumns()
;
Java only
GridInterface
defines the methods for objects representing grid widgets. In addition, objects of typeGridInterface
support all the methods inWidgetInterface
.The method
numColumns
returns the number of columns in the grid; the methodgetColumn
returns an object corresponding to a given field in the grid, referenced by column number.