TableRowHigh - property of the PmgTrendViewer object
Description:
Height of data row in the table mode (in pixels).
Syntax:
Long TableRowHigh
Note:
Property access
for read and write.
The default value of this property is defined in the "
Table row height" configurator of this object.
This property is also functional in
Web panels.
The property is used only if the
table mode is set.
Example1:
JavaScriptVBScriptSelect and copy to clipboard
var oTView = pMe.Items("../TrendView");
var nTableRowHigh = oTView.TableRowHigh;
// Reading from the property
oTView.TableRowHigh = 15;
// Writing into the property
Dim oTView
Set oTView = pMe.Items("../TrendView")
Dim nTableRowHigh
nTableRowHigh = oTView.TableRowHigh
' Reading from the property
oTView.TableRowHigh = 15
' Writing into the property