................
drawer.nfont.New1("", 20, 1)
drawer.nfont.Name = "Arial"
drawer.drwstr.Font = drawer.nfont.Value
str = "Prova"
drawer.Sbrush.Color = cBlack
''''save
drawer.bmp.New2(drawer.drwstr.StringHeight(str), drawer.drwstr.StringWidth(str))
drawer.Rectsave.New1(48, 48, drawer.drwstr.StringHeight(str) + 1, drawer.drwstr.StringWidth(str) + 1)
drawer.bmp.ScreenCapture(drawer.Rectsave.Value)
''''
drawer.Sbrush.Color = cBlack
drawer.drwstr.DrawString1(str, drawer.Sbrush.Value, 50, 50)
drawer.Sbrush.Color = cWhite
drawer.drwstr.DrawString1(str, drawer.Sbrush.Value, 49, 49)
........
........
'restore
drawer.drwstr.DrawImage(drawer.bmp.Value, drawer.Rectsave.Value, drawer.Rectsave.Value, True)
Form1.Refresh