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

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.