Table of Content
HAL Forum
procedure AddIntToArea (
Integer i,Area a)
Description:
Adds Integer value to Area
Parameters:
i Integer value
a Variable of Area Type
procedure ExampleAddIntToArea()
begin
  Area a;

  AddIntToArea(100,a);  
  return;
end;
Related topics:
««