TileLiveData_2 property: Tile class
Description
Use the TileLiveData_2 property to set the value for the second segment of live data as a String value. To display live data, the live data area must be enabled in the Tile Wizard definition, by invoking the setTileLiveData method, or by setting the hasLiveDataDescr property.
Typically, TileLiveData_2 is used to display a metric or other numeric value. Optionally, you can set the isTileLiveData_2_Metrics property to format this element as a metric similar to the badge metric (in tangerine orange and in bold). In addition, you can set the TrendImage property to display an up or down trend arrow preceding this metric.
This property is read/write.
Example
%This.hasLiveDataDescr = True;
%This.TileLiveData_2 = NumberToString("%10.2v", &nMetric) | "%";
%This.isTileLiveData_2_Metrics = True;
/* A trend arrow is an optional element of live data. */
%This.hasLivedataTrendImage = True;
%This.TrendImage = %This.k_strTrendUpImage;