GetInkMode
ModeFlags = GetInkMode()
 
Parameters: NONE
Returns:

    ModeFlags = The current INKmode setting
 

      GetInkMode returns the current InkMode that the graphics pen is set to.


FACTS:


      * None



Mini Tutorial:


      This example shows how to set a InkMode, then read it back.

  
; Set the INK mode to Normal + Alpha Blend
  InkMode 16+1
  
; Display the current Ink Mode
  Print GetInkMode()
  
; Display the current Ink Mode in binary format
  Print Bin$(GetInkMode())
  
; Display the Screen and wait for the user to press a key
  Sync
  WaitKey
  


This example would output.

  
  17
  %00000000000000000000000000010001
  

 
Related Info: GetInk | Ink | InkAlpha | InkMode :
 


(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com