Row | (Long) If the value is greater or equal 0 then it is a row index (zero-based index, counted including the fixed part).
Value -2 means the last row. |
---|---|
Col | (Long) If the value is greater or equal 0 then it is a column index (zero-based index, counted including the fixed part).
Value -2 means the last column. |
var oTable = pMe.Items("/Table");
var sCell = oTable.GetCellText(1, 4);
oTable.SetCellText(2, 4, sCell);
oTable.Draw();