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