gambas-source-code/app/examples/Control/HighlightEditor/.src/FEditor.form
gambas 988546ad28 Update some translations.
[EXAMPLES]
* NEW: Update some translations.
2019-06-14 01:32:14 +02:00

36 lines
705 B
Text

# Gambas Form File 3.0
{ Form Form
MoveScaled(7.375,17.75,72.375,66.75)
Text = ("HTML Highlighting Editor")
Icon = Picture["editor.png"]
Arrangement = Arrange.Fill
{ mnuPopup Menu
Text = ("Popup")
Visible = False
{ mnuHighlight Menu
Text = ("Highlight HTML")
Checked = True
}
{ mnuImmediately Menu
Text = ("Highlight immediately")
}
{ Menu1 Menu
}
{ mnuQuit Menu
Text = ("Quit")
}
}
{ VSplit1 VSplit
MoveScaled(7,8,48,48)
{ Editor1 TextEditor
MoveScaled(3,2,43,16)
Border = False
Highlight = "Custom"
}
{ Editor2 TextEditor
MoveScaled(2,22,43,15)
Highlight = "Custom"
}
}
}