Hello World
' Hello World
GraphicsWindow.Show()
' App Grafikfenster Titel festlegen
GraphicsWindow.Clear()
GraphicsWindow.Title = "Hello World"
' App Grafikfenster Größe (Verdana)
GraphicsWindow.Show()
' App Grafikfenster Position
GraphicsWindow.Top = 350
GraphicsWindow.Left = 750
GraphicsWindow.Width = 400 ' Breite x-Koordinate
GraphicsWindow.Height = 240 ' Höhe y-Koordinate
GraphicsWindow.FontName = "Tahoma"
GraphicsWindow.FontSize = "12"
GraphicsWindow.BrushColor = "MidnightBlue"
GraphicsWindow.DrawText(5,200,
"___________________________________________________")
GraphicsWindow.DrawText(112,220, "Copyright by ENI-Soft 2019")
' Variablen initialisieren
x = 20
y = 20
Text = "Hello World"
' Textausgabe
GraphicsWindow.DrawText(x, y, Text)