setTileLiveData method: Tile class

Syntax

setTileLiveData(livedata_display)

Description

Invoke the setTileLiveData method within your implementation only if you wish to dynamically override whether the live data area is enabled (that is, whether live data is displayed). Invoking this method is equivalent to setting the hasLiveDataDescr property. If live data is enabled, you must also specify one or more live data values with the TileLiveData_1, TrendImage, TileLiveData_2, and TileLiveData_3 properties.

Parameters

Parameter Description

livedata_display

Specify a String value:

  • Y - Indicates that the live data area is enabled for this tile.

  • N - Indicates that the live data area is disabled for this tile.

Returns

None.

Example

%This.setTileLiveData("Y"); /* Enables the live data area. */

%This.TileLiveData_1 = "Value 1";
%This.hasLivedataTrendImage = True; /* Optional trend image */
%This.TrendImage = %This.k_strTrendUpImage; 
%This.TileLiveData_2 = "Value 2";
%This.TileLiveData_3 = "Value 3";