SetColPrivateData - method of the PmgWTable object
Description:
Sets auxiliary column value.
Syntax:
Empty SetColPrivateData(Long Col, Variant Value)
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. |
Value | (Variant) The new value to be written. |
---|
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTable = pMe.Items("/Table");
oTable.SetColPrivateData(-2, "text");
Dim oTable
Set oTable = pMe.Items("/Table")
oTable.SetColPrivateData -2, "text"