pMe | (Object) Reference to the PmgWTable object where the event rises. |
---|---|
pEvent | (Object) Reference to an object describing detailed information about the specific event.
pEvent.StartRow - (Long) [for reading] Index of the first row for redrawing
pEvent.EndRow - (Long) [for reading] Index of the last row for the redrawing (including)
pEvent.StartEmptyRow - (Long) [for reading] Index of the first row that doesn't contain data for redrawing
pEvent.EndEmptyRow - (Long) [for reading] Index of the last row that doesn't contain data for redrawing (including) |
var index;
var oTable = pMe;
for (index = nStartRow; index <= nEndRow; index++)
{
oTable.SetCellText(index, 0, index);
oTable.SetCellText(index, 1, Pm.Round(Pm.Random(0, 100), 1));
}