setCellWidth method

void setCellWidth(
  1. int cellindex,
  2. double width
)

Implementation

void setCellWidth(int cellindex, double width) {
  if ((width >= 0) && (cellindex < widths.length)) widths[cellindex] = width;
}