Home
Products
Community
Manuals
Contact
Login or Signup

BlitzMax Manual

Special Forums/BlitzMax Manual

BlitzMax Manual

Page: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
Command
Description
Posts
Last post
PokeDoublePoke a double into a bank A double requires 8 bytes of storage0Nobody (1+ years ago)
PokeFloatPoke a float into a bank A float requires 4 bytes of storage0Nobody (1+ years ago)
PokeIntPoke an int into a bank An int is a signed 32 bit value that requires 4 bytes of storage...0Nobody (1+ years ago)
PokeLongPoke a long integer int into a bank A long is a 64 bit integer that requires 8 bytes of storage...0Nobody (1+ years ago)
PokeShortPoke a short into a bank An short is an unsigned 16 bit value that requires 2 bytes of storage...0Nobody (1+ years ago)
PollEventGet the next event from the event queue PollEvent removes an event from the event queue and updates the CurrentEvent global variable...0Nobody (1+ years ago)
PollSystemPoll operating system PollSystem returns control back to the operating system, allowing such events as keystrokes and gadget actions to be processed...0Nobody (1+ years ago)
PopupWindowMenuDisplay a popup menu...0Nobody (1+ years ago)
PostEventPost an event to the event queue PostEvent adds an event to the end of the event queue...0Nobody (1+ years ago)
PrintWrite a string to the standard IO stream A newline character is also written after str...0Nobody (1+ years ago)
PrivatePrivate makes a Constant, Global variable or Function only accessible from within the current source file0Nobody (1+ years ago)
ProceedRequest user confirmation or cancellation...0Nobody (1+ years ago)
PublicPublic makes a Constant, Global variable or Function accessible from outside the current source file (Default)0Nobody (1+ years ago)
QueryGadgetReturn internal gadget properties...0Nobody (1+ years ago)
RandGenerate random integer The optional parameter allows you to use Rand in 2 ways: [ Format | Result * &Rand(x) | Random integer in the range 1 to x (inclusive) * &Rand(x,y) | Random integer in the range x to y (inclusive) ]0Nobody (1+ years ago)
ReadBankRead bytes from a Stream to a Bank0Nobody (1+ years ago)
ReadByteRead a Byte from a stream ReadByte reads a single Byte from stream...0Nobody (1+ years ago)
ReadDataRead classic BASIC style data0Nobody (1+ years ago)
ReadDirOpen a directory0Nobody (1+ years ago)
ReadDoubleRead a Double from a stream ReadDouble reads 8 bytes from stream...0Nobody (1+ years ago)
ReadFileOpen a file for input...0Nobody (1+ years ago)
ReadFloatRead a Float from a stream ReadFloat reads 4 bytes from stream...0Nobody (1+ years ago)
ReadIntRead an Int from a stream ReadInt reads 4 bytes from stream...0Nobody (1+ years ago)
ReadLineRead a line of text from a stream Bytes are read from stream until a newline character (ascii code 10) or null character (ascii code 0) is read, or end of file is detected...0Nobody (1+ years ago)
ReadLongRead a Long from a stream ReadLong reads 8 bytes from stream...0Nobody (1+ years ago)