Function GetPref returns the on-off status of the specified preference item.
A table of preference dialog items and their corresponding IDs may be found in the Scirpt Appendix.
FUNCTION GetPref(prefIndex : INTEGER): BOOLEAN;def vs.GetPref(prefIndex):
return BOOLEAN| Name | Type | Description |
|---|---|---|
| prefIndex | INTEGER | Preference item constant. |
SelHandleStatus:=GetPref(17);Example for a shortcut to toggle preference true/false:
SetPref(49,not GetPref(49));SelHandleStatus = vs.GetPref(17)Availability: from MiniCAD6.0