Retrieves account's type.
SYNTAX
public AccountType Type { get; }
EXAMPLE
using System; using System.Collections; using System.Collections.Generic; using System.Text; using System.Drawing; using PTLRuntime.NETScript; namespace AccountTypeExamples { public class AccountTypeExamples : NETStrategy { public override void OnQuote() { Account acc = Accounts.Current; Print("Account type: "+acc.Type); } } }