Class
Overview
The Class
property of the Account
class retuns the OlObjectClass constant indicating the object's class.
Syntax
Return Value
The OlObjectClass constant given to the Account object. In all cases, this will return olAccount, indicating the object is in fact an account.
Example
In this code snippet, we collect an instance of the Account
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:
Sub CheckAccountClass(acc As Account)
' Check if the account object is of type olAccount
If acc.Class = olAccount Then
MsgBox "This is a valid Account object.", vbInformation
Else
MsgBox "This object is not an Account.", vbCritical
End If
End Sub