TableColumnWidth - property of the tvTrend object
Description:
Column width of values in the table mode (in pixels).
Syntax:
Long TableColumnWidth
Note:
Property access
for read and write.
The default value of this property is defined in the "
tvTrend > Table mode > Table column width" configurator of this object.
This property is also functional in
Web panels.
The property is used only if the
table mode is set.
In order to make the modification visible on writing, it is necessary to call the
Draw method.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTView = pMe.Items("../TrendView");
var oTrend = oTView.Trends(0);
oTrend.TableColumnWidth = 80;
Dim oTView
Set oTView = pMe.Items("../TrendView")
Dim oTrend
Set oTrend = oTView.Trends(0)
oTrend.TableColumnWidth = 80