HI_SetGraphPrintTitle

HI_SetGraphPrintTitle

%HI_SetGraphPrintTitle function


Old name

%HI_SetDiaTrendPrintTitle

Function

The function %HI_SetGraphPrintTitle sets the print title header of the displayer of Graph or XY Graph types (Control function).

Declaration

%HI_SetGraphPrintTitle( INT in refId, TEXT in printTitle )

Parameters

refId

Reference to displayer (RefID).

printTitle

Graph title to print.

Description

The graph must be placed in the picture, where the parameter refId is the reference variable of the graph. The parameter printTitle is the print title of the graph.

Example

Procedure:
There is set the print title and then the graph is to be printed.

 

ENTRY btn_OnClick %HI_SetGraphPrintTitle(_graph, "Print title")
%HI_PrintGO(_graph, @FALSE) END btn_OnClick