TableHeadRowHigh - property of the PmgTrendViewer object
Description:
Height of head row in the table mode in the table mode (in pixels).
Syntax:
Long TableHeadRowHigh
Note:
Property access
for read and write.
The preset value of this property is defined in the "
Table head 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 nTableHeadRowHigh = oTView.TableHeadRowHigh;
// Reading from the property
oTView.TableHeadRowHigh = 15;
// Writing into the property
Dim oTView, nTableHeadRowHigh
Set oTView = pMe.Items("../TrendView")
nTableHeadRowHigh = oTView.TableHeadRowHigh
' Reading from the property
oTView.TableHeadRowHigh = 15
' Writing into the property