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 [[VS:Function Reference Appendix#Appendix F - Preference Selectors|VectorScript Appendix]].
FUNCTION GetPref(prefIndex : INTEGER): BOOLEAN;def vs.GetPref(prefIndex):
return BOOLEAN| Name | Type | Description |
|---|---|---|
| prefIndex | INTEGER | Preference item constant. |
==== VectorScript ====
SelHandleStatus:=GetPref(17);Example for a shortcut to toggle preference true/false:
SetPref(49,not GetPref(49));==== Python ====
SelHandleStatus = vs.GetPref(17)Availability: from MiniCAD6.0
- Document Settings