Table of Content
HAL Forum
procedure OutVal (
Integer position,String function,Val printvalue,Integer valuetype,Boolean alignment)
Description:
Prints values in reports
Parameters:
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
global
procedure TestPrintRn(record RcVc RepSpec)
begin

  StartReportJob("Report Example");                  
  Header(1,"Use it to print in Header",1);     
  EndHeader;
  
  StartFormat(15);
  OutString(0,0,"String",false);
  OutDate(100,0,CurrentDate,false);
  OutLongInt(400,0,10,true);
  OutVal(1,0,10/3,M4Val,true);
  EndFormat;
  Black_Divider(0,1);

  EndJob;

  return;
end;
Related topics:
««