Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Faxual II for CA-Clipper - bmhandle http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 BmHandle
 Get loaded bitmap handle
------------------------------------------------------------------------------
 Syntax

    BmHandle(<nIndex>) -> nBitmap

 Parameters

    <nIndex> is a number from 1 to BmCount().

 Returns

    The bitmap handle of the <nIndex>th entry in the internal bitmap table.
    If <nIndex> is out of range, BmHandle() returns 0 and sets F2Error().

 Description

    Faxual II keeps an internal table of all loaded bitmaps.  BmHandle() and
    BmCount() let you access the table to read the handles of all bitmaps in
    memory.

 Example

    .   This example unloads all bitmaps from memory.

        do while BmCount() > 0
            BmUnload(BmHandle(1))
        enddo

See Also: BmCount

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson