pascalabcnet/TestSamples/VBSamples/gr_Text.vb
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

22 lines
327 B
VB.net

Imports ABCObjects, GraphABC
Module gr_Text
Sub Main()
Dim bt As TextABC
Dim x As Integer
x = 224
bt = New TextABC(60, 110, 110, "Hello!", RGB(x,x,x))
While x > 32
Sleep(40)
x = x - 32
bt = CType(bt.Clone(), TextABC)
bt.Color = RGB(x, x, x)
bt.MoveOn(7, 7)
End While
End Sub
End Module