|
Prints values in reports with possibility of overstriking |
|
position |
print position (0-480) |
function |
name of HAL-function for Drill-Down support |
printvalue |
value for printout |
valuetype |
subtype for Value Type |
alignment |
true - align to right, false - to left |
ovstflag |
0 - normal, 1 - overstrike |
|
global
procedure TestPrintRn(record RcVc RepSpec)
begin
StartReportJob("Report Example 2");
Header(1,"Use it to print in Header",1);
EndHeader;
StartFormat(15);
OutStringOvst(0,0,"String",false,1);
OutDateOvst(100,0,CurrentDate,false,1);
OutLongIntOvst(400,0,10,true,1);
OutValOvst(1,0,10/3,M4Val,true,1);
EndFormat;
Black_Divider(0,1);
EndJob;
return;
end;
««