Used with the Text and TextBox statement to specify an
normal-styled font (i.e., neither bold or italic).
Comments
This constant is equal to 1.
Example
Sub Main()
Begin Dialog UserDialog 16,32,232,132,"Regular Font
Demo"
Text 10,10,200,20,"Hello,
world.",,"Helv",24,ebRegular
TextBox 10,35,200,20,.Edit,,"Times New
Roman",16,ebRegular
OKButton 96,110,40,14
End Dialog
Dim a As UserDialog
Dialog a
End Sub