|
The StdCtrls module is designed to provide low-level access to the Scorpion
User Interface.
This module contains classes for accessing the following standard
windows controls and fonts:
Button CheckBox ComboBox Control Edit Font GroupBox Label ListBox PageControl Panel RadioButton ScrollBox TabSheet WinControl Callback Frame WinControl Release Notes
Derived classes for special controls
Note: Accessing the Scorpion
GUI using these low-level interfaces requires programming skills.
These interfaces are not guaranteed to be backwards compatible.
Compatibility issues will be described in the
Scorpion
Release Notes.
Example 1: Modify font properties of a Panel object
panel=GetResultPanel() panel.caption='OK' panel.color='green'
# modifying the font panel.font.size=14 panel.font.color='blue' panel.font.bold=1
|