v1.0
Returns the specified user preference setting/value.
oVariant = GetUserPref( Target ); |
| Parameter | Type | Description |
|---|---|---|
| Target | UserPreference | User preference to get. |
'
' This example demonstrates how to find the current user
' setting for the automatic inspection setting
'
bPopUpPPGs = GetUserPref(siAutoInspect)
if bPopUpPPGs then
Application.LogMessage "true"
else
Application.LogMessage "false"
end if
|