
This method returns a list indicating the width and height of the dialog box's client area. This would be the area of the dialog box excluding the title bar and border of the dialog box.
Returns the following according to the situation:
The recommended convention is passing the control identifier directly:
Copy Code |
|---|
(Odcl_Form_GetControlArea MyDialogReference [as Reference]) |
An alternative convention is to identify the control by providing the project file, the dialog name and the control name:
Copy Code |
|---|
(Odcl_Form_GetControlArea ProjectFile [as String] DialogName [as String]) |
Dockable, FileDialog, Modal, Modeless.
Copy Code |
|---|
; Get the area dimension for controls (client area in Microsoft Win32 API) (Setq rValue (Odcl_Form_GetControlArea MyProject_MyForm)) |