Name

View as Markdown

Definition

Determines the listed name of the NinjaScript object.

Property Value

A string value.

Syntax

Name

Examples

1protected override void OnStateChange()
2{
3
4 if (State == State.SetDefaults)
5 {
6 Name = "Examples indicator";
7 Description = @"An example of an indicator used for documentation purposes";
8 }