Skip to content

Instantly share code, notes, and snippets.

@brigand
Created October 26, 2012 17:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brigand/3960142 to your computer and use it in GitHub Desktop.
Save brigand/3960142 to your computer and use it in GitHub Desktop.
how to separate options
; from
Gdip_TextToGraphics(G, Text, "cffffffff")
;to
options = cffffffff
Gdip_TextToGraphics(G, Text, options)
;Example... 'Red' can be any variable name
Red = ffff0000
options = c%Red%
Gdip_TextToGraphics(G, Text, options)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment