IsEditable

View as Markdown

Definition

Determines if a Market Analyzer Column is editable.

Property Value

This property returns true if the Market Analyzer Column can be edited; otherwise, false.

Syntax

IsEditable

Examples

1protected override void OnStateChange()
2{
3 if (State == State.SetDefaults)
4 {
5 DataType = typeof(string);
6 IsEditable = true;
7 }
8}