Skip to content

Latest commit

 

History

History
60 lines (32 loc) · 1.57 KB

Outlook.NameSpace.Offline.md

File metadata and controls

60 lines (32 loc) · 1.57 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
NameSpace.Offline property (Outlook)
vbaol11.chm773
vbaol11.chm773
Outlook.NameSpace.Offline
c62112d5-e50f-bd6a-bb3b-7c1818752d8b
06/08/2017
medium

NameSpace.Offline property (Outlook)

Returns a Boolean indicating True if Outlook is offline (not connected to an Exchange server), and False if online (connected to an Exchange server). Read-only.

Syntax

expression. Offline

expression A variable that represents a 'NameSpace' object.

Remarks

The Offline property returns valid information only for an Exchange profile. It's not intended for non-Exchange account types such as POP3, IMAPI, and HTTP.

If the NameSpace.ExchangeConnectionMode property is olOffline or olDisconnected, the Offline property will return True. If the ExchangeConnectionMode property is olOnline, olConnected, or olConnectedHeaders, the Offline property will return False.

Example

The following Microsoft Visual Basic for Applications (VBA) example returns True or False depending on whether the NameSpace object is currently online.

Sub Off() 
 
 'Determines whether Outlook is currently offline. 
 
 Dim nmsName As Outlook.NameSpace 
 
 
 
 Set nmsName = Application.GetNamespace("MAPI") 
 
 MsgBox nmsName.Offline 
 
End Sub

See also

NameSpace Object

[!includeSupport and feedback]