Skip to content

DisplayName


Overview

The DisplayName property of the Account class is used to get or set the display name associated with the account.

Syntax

vba
' To get the display name of the account
Account.DisplayName

' To set the display name of the account
Account.DisplayName = "John Doe's Account"

Return Value

When accessed, the DisplayName property returns a String that represents the display name of the account.

Example

This example demonstrates how to set a new display name for an account and then retrieve it to confirm the update:

vba
Sub UpdateAndDisplayDisplayName(acc As Account)
    ' Set a new display name for the account
    acc.DisplayName = "New Display Name"

    ' Retrieve and display the updated display name
    MsgBox "The updated display name is: " & acc.DisplayName, vbInformation
End Sub