StrategyTraceOrders Property |
Prints the order messages in the Output View when set to true
Namespace: ArthaChitra.Model.SharpScriptAssembly: ArthaChitra.Core (in ArthaChitra.Core.dll) Version: 2.0.3.0
Syntax protected bool TraceOrders { get; set; }
Property Value
BooleanExample 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