Dokumentaro de Gambaso
Compilation & Installation
Components
gb
gb.crypt
gb.qt4
Control
Key
Documents
Indekso de Lingvo
Language Overviews
LeguMin
Lexicon
Registro

SvgImage.Paint (gb.qt4)

Sub Paint ( [ X As Float, Y As Float, Width As Float, Height As Float ] )

Paint the SVG document to the current painted device.

Examples

Public Sub DrawingArea1_Draw()

  ' Paint the Gambas logo
  Dim hSvgImage As SvgImage

  hSvgImage = SvgImage.Load("gambas.svg")
  hSvgImage.Paint

End