Properties
The Dialog size is fixed at design time by properties “width” and “height”, or by the mouse, dragging the border.The position on screen is set in the following ways:By properties “posx” and “posy”, inserting a valid coordinate.By properties “posx” and/or “posy”, inserting value “-1” meaning that on the associate axis (X and/or Y) is necessary to center the window on screen.“modal” property: allows to choose the Dialog type “modal” or “modeless”“moveable”: allows to move the Dialog using the mouse/touch. It’s not possible to move the Dialog outside the visible screen area.By local variables “@@DIALOG_POSX” and “@@DIALOG_POSY” which, if set before opening the Dialog to a value different than –1, set the new Window coordinate. In this case, the coordinate is saved and reused the next time the dialog will be recalled.Note: size is not modifiable by the final user (resizing by the mouse/touch is locked).Whenever would be necessary to specify a Dialog title, activate the “bevel” property and set a valid string to “titleStringID”. To correctly display it, set also a valid value to the “border” property.