Creates a new view for the specified folder.
#Include <OutlookEX_GUI.au3>
_OL_ViewCreate($oOL, $sView, $vFolder[, $iType = Default[, $iSaveOption = Default]])
Parameters
$oOL | Outlook object returned by a preceding call to _OL_Open() |
$sView | Name of the new view |
$vFolder | Folder object as returned by _OL_FolderAccess or full name of folder |
$iType | [optional] The type of the new view. Can be any of the OlViewType enumeration (default = $olTableView) |
$iSaveOption | [optional] Specifies the permissions of the new view. Can be any of the OlViewSaveOption enumeration (default = $olViewSaveOptionThisFolderOnlyMe) |
Return Value
Success: Object of the created view
Remarks
None.
Related