DrawnBy

<< Click to Display Table of Contents >>

Navigation:  NinjaScript > Language Reference > Drawing Tools >

DrawnBy

Previous page Return to chapter overview Next page

Definition

Represents the NinjaScript object which created the drawing object

 

Property Value

The NinjaScript object which created the drawing tool; this value will be null if drawn by a user.

 

Syntax

DrawnBy

 

Examples

ns

protected override void OnRender(ChartControl chartControl, ChartScale chartScale)
{      
  // if the drawing tool was not created by a user,
  // print the name of the object that it was created      
  if(!IsUserDrawn)
  Print(DrawnBy.Name);
}