row method

VlDataRow row()

Adds a row and hands it back, ready to be filled.

Returns The new row, already attached to this dataset.

See also VlDataRow.

Implementation

VlDataRow row() {
  VlDataRow r =  VlDataRow();
  r.owner = this;
  rows.add(r.obj);
  return r;
}