Class
Overview
The Class
property of the Accounts
class retuns the OlObjectClass constant indicating the object's class.
Syntax
Return Value
The OlObjectClass constant given to the Accounts object. In all cases, this will return olAccounts, indicating the object is in fact an account.
Example
In this code snippet, we collect an instance of the Accounts
class in the subroutine parameter and then use the Class
property to verify if the object is indeed an account. The result is displayed in a message box:
vba
Sub CheckAccountClass(acc As Accounts)
' Check if the account object is of type olAccount
If acc.Class = olAccounts Then
MsgBox "This is a valid Accounts object.", vbInformation
Else
MsgBox "This object is not an Accounts object.", vbCritical
End If
End Sub