Difference between revisions of "ObjectType:boolptr"
Jump to navigation
Jump to search
Line 15: | Line 15: | ||
== Examples == | == Examples == | ||
+ | ===Declare a boolean pointer=== | ||
+ | *Declare Point1 boolptr | ||
+ | ===Display a boolean pointers memory address= | ||
+ | echo Memory Address: ${Point1.Address} | ||
== See Also == | == See Also == |
Revision as of 01:38, 26 August 2005
Contents
Description
A boolptr is simply a pointer to a bool. The type inherits bool, and can be used as if it were a bool.
Members
- int Address: The memory address of the actual boolean value
Methods
(none)
Inherits
Returns
TRUE or FALSE
Examples
Declare a boolean pointer
- Declare Point1 boolptr
==Display a boolean pointers memory address
echo Memory Address: ${Point1.Address}