Modifies properties of a view.
#Include <OutlookEX_GUI.au3>
_OL_ViewModify($oOL, $vView, [$vFolder = Default[, $sName = Default[, $bLockUserChanges = Default[, $sFilter = Default[, $sXML = Default]]]]])
Parameters
$oOL | Outlook object returned by a preceding call to _OL_Open() |
$vView | Index, name or object of the view to be modified |
$vFolder | [optional] Folder object as returned by _OL_FolderAccess or full name of folder. Has to be specified when $vView is not a view object |
$sName | [optional] Display name for the view (default = do not modify) |
$sLanguage | [optional] String that represents the language setting for the object that defines the language used in the menu (default = do not modify) |
$bLockUserChanges | [optional] Indicates whether a user can modify the settings of the current view. Use True or False (default = do not modify) |
$sFilter | [optional] String in DAV Searching and Locating (DASL) syntax that represents the current filter for the view (default = do not modify) |
$sXML | [optional] String value that specifies the XML definition of the current view (default = do not modify) |
Return Value
Success: Object of the view
Remarks
$sLanguage: Example: "EN-US" represents the ISO code for "United States - English"
Related