Click or drag to resize

StrategyBaseTraceOrders Property

Prints the order messages in the Output View when set to true

Namespace:  SharpCharts.Base.SharpScript
Assembly:  SharpCharts.Base (in SharpCharts.Base.dll) Version: 1.0.0.42 (1.0.0.42)
Syntax
C#
protected bool TraceOrders { get; set; }

Property Value

Type: Boolean
Examples
protected override void OnStateChange()
{
    switch (base.State)
    {
        case SharpCharts.Base.SharpScript.State.Finalize:
            break;
        case SharpCharts.Base.SharpScript.State.Initialize:

           this.TraceOrders = true;

            break;
        case SharpCharts.Base.SharpScript.State.StartUp:
            break;
        default:
            break;
     }
}
See Also