Rows - property of the PmgWTable object
Description:
The number of all table rows (counted including the fixed part).
Note:
Property access
for read and write.
The default value of this property is defined in the "
Total number of rows" configurator of this object.
The property can also be set by the
Dim method.
In order to make the modification visible on writing, it is necessary to call the
Draw method.
This property is also functional in
Web panels.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTable = pMe.Items("/Table");
var nRowss = oTable.Rows;
// Reading from the property
oTable.Rows = 20;
// Writing into the property
Dim oTable
Set oTable = pMe.Items("/Table")
Dim nRowss
nRowss = oTable.Rows
' Reading from the property
oTable.Rows = 20
' Writing into the property