Name

View as Markdown

Definition

Indicates the name of the specified account

Property Value

A string representing the name of the account

Syntax

\<account\>.Name

Examples

protected override void OnStateChange()
if (State == State.SetDefaults)
{
// Initialize myAccount
}
private void OnAccountStatusUpdate(object sender, AccountStatusEventArgs e)
{
// Print the name of each account updated
Print(String.Format("{0} account updated", myAccount.Name));
}