Write/Read |
About Preferences |
Description |
Set and return whether to list files for recall on softkeys by most-recently used or alphabetically. |
VB Syntax |
pref.RecallSoftkeysMostRecent = value |
Variable |
(Type) - Description |
pref |
A Preferences (object) |
value |
(Boolean) – Choose from: True – Recall softkeys show most recently-used files. False – Recall softkeys show alphabetically-ordered files. |
Return Type |
Boolean |
Default |
False |
Examples |
pref.RecallSoftkeysMostRecent = False 'Write |
recallPref = pref.RecallSoftkeysMostRecent 'Read |
|
C++ Syntax |
HRESULT get_RecallSoftkeysMostRecent(VARIANT_BOOL * pVal); HRESULT put_RecallSoftkeysMostRecent(VARIANT_BOOL pVal); |
Interface |
IPreferences13 |