TableTimeFont - property of the PmgTrendViewer object
Description:
Font of time column in the table mode. Returns the
ObjectFont object. The font appearance can be changed by writing into its properties.
Syntax:
Object TableTimeFont
Note:
Property access for
read only.
The value of this property is defined in the "
Font" 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 oFont = oTView.TableTimeFont;
oFont.Size = 8;
oFont.Bold = true;
oFont.Italic = true;
oFont.Name = "MS Sans Serif";
Dim oTView
Set oTView = pMe.Items("../TrendView")
Dim oFont
Set oFont = oTView.TableTimeFont
oFont.Size = 8
oFont.Bold = true
oFont.Italic = true
oFont.Name = "MS Sans Serif"