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