Table of Content
HAL Forum
procedure AddByteToArea (
Integer i,Area a)
Description:
Adds Byte to Area
Parameters:
i Integer
a Variable of Area Type
procedure ExampleAddByteToArea()
begin
  Area a;

  AddByteToArea(1,a);  
  return;
end;
Related topics:
««