base indi:
[Category("Parameters")]
[Display(Name = "My Variable")]
public bool my_Var
{
get; set;
}
....
....
Addons.Xyz.Show_other_Default_Inputs();
....
where `Show_other_Default_Inputs` should add other user-inputs, like:
[Category("Parameters")]
[Display(Name = "Enable Alerts")]
public bool enableAlert
{
get; set;
}
to say more clear, I WANT TO SET A FIELD (not property) in the indicator, like:
private bool Show_Color_Inputs = true;
and if that field is set to true, according to that, some inputs should be shown/hiden to user. will be handy.

Comment