Returns an integer value representing the color built from the three components and with the specified alpha value. Each component should be a value between 0 to 255 (inclusive) Alpha - A value between 0 to 255 where 0 is fully transparent and 255 is fully opaque.
BlackAsInt
BlueAsInt
CyanAsInt
DarkGrayAsInt
GrayAsInt
GreenAsInt
LightGrayAsInt
MagentaAsInt
RedAsInt
RGB (RAsInt, GAsInt, BAsInt) AsInt
Returns an integer value representing the color built from the three components. Each component should be a value between 0 to 255 (inclusive) Alpha is implicitly set to 255 (opaque).
A predefined object containing the possible values that dialogs return. For example: DimresultAsInt result = Msgbox2("Save changes?", "", "Yes", "", "No", Null)
Ifresult = DialogResponse.POSITIVEThen 'save changes EndIf
Predefined object containing "gravity" values. These values affect the alignment of text or images. Example: DimEditText1AsEditText EditText1.Initialize("")
EditText1.Gravity = Gravity.CENTER
Typeface is a predefined object that holds the typeface styles and the default installed fonts. Note that unlike most other predefined objects, you can declare new objects of this type. Example: EditText1.Typeface = Typeface.DEFAULT_BOLD
Loads a font file, that was added with the file manager. Example: DimMyFontAsTypeface MyFont = Typeface.LoadFromAssets("MyFont.ttf")
EditText1.Typeface = MyFont