Important: The information in this document is obsolete and should not be used for new development.
GetControlMinimum
To determine a control's minimum setting, use theGetControlMinimum
function. TheGetControlMinimum
function is also available as theGetCtlMin
function.
FUNCTION GetControlMinimum (theControl: ControlHandle): Integer;
theControl
- A handle to the control whose minimum value you wish to determine.
DESCRIPTION
TheGetControlMinimum
function returns as its function result the specified control's minimum setting, which is stored in thecontrlMin
field of the control record.When you create a control, you specify an initial minimum setting either in the control resource or in the
min
parameter of theNewControl
function. You can change the minimum setting by using theSetControlMinimum
procedure.