VbRichClient-Framework Wikia
Advertisement

SetSourceColor[]

Sets the fill color of the cCairoContext linked to the respective cCairoSurface.

Example[]

Dim CC As cCairoContext
  'unlike in GDI, where we would "Select" a Bitmap into a hDC first...
  'with Cairo we can create such a CC "anytime" from any Surface
  'in a non-expensive Operation (this does not need larger CPU-cycles)
  Set CC = Srf.CreateContext
 
  'the following two lines ensure a complete Surface-Fill
  CC.SetSourceColor vbWhite
  CC.Paint
Advertisement