All

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

All

Return to chapter overview

Definition

A collection of Account objects

 

Property Value

A Collection of Account objects

 

Syntax

Accounts.All

 

Examples

ns

protected override void OnStateChange()
{
  if (State == State.DataLoaded)
  {
      foreach (Account sampleAccount in Account.All)

    Print(String.Format("The account {0} has a {1} unit FX lotsize set", sampleAccount.Name, sampleAccount.ForexLotSize));
  }

}