GetRowPrivateData - method of the PmgWTable object
Description:
Returns auxiliary row value.
Syntax:
Variant GetRowPrivateData(Long Row)
Parameters:
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. |
---|
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTable = pMe.Items("/Table");
var valPrivRow3 = oTable.GetRowPrivateData(3);
Dim oTable
Set oTable = pMe.Items("/Table")
Dim valPrivRow3
valPrivRow3 = oTable.GetRowPrivateData(3)