Table of Content
HAL Forum
Introduction
What is HAL?
Get Started
Language Reference
Declarations, assignments and statements
Keywords and operations
Tutorials
Change a window
Find the window
Modify the window
Create a report
HAL Primitives
HAL Procedures/Functions
HAL Discussions
procedure
AddLongToArea
(
LongInt
l
,
Area
a
)
Description:
Adds Long Integer value to Area
Parameters:
l
LongInt value
a
Variable of Area Type
procedure ExampleAddLongToArea() begin Area a; AddLongToArea(100000,a); return; end;
Related topics:
««