AreLinesConfigurable

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

AreLinesConfigurable

Return to chapter overview

Definition

Determines if the line(s) used in an indicator are configurable from within the indicator dialog window.

 

 

Property Value

A bool which true if any indicator line(s) are configurable; otherwise, false. Default set to true.

 

Syntax

AreLinesConfigurable

 

 

Examples

ns

protected override void OnStateChange()
{
    if (State == State.SetDefaults)
    {
        AddLine(Brushes.Gray, 30, "Lower");
        AreLinesConfigurable = false; // Indicator lines are not configurable
    }
}