/// <summary>
/// </summary>
[Description("Number of bars for smoothing")]
[GridCategory("Parameters")]
[ReadOnlyAttribute(true)]
public int Smooth
{
get { return smooth; }
set { smooth = Math.Max(1, value); }
}
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Read Only Parameter Value Tip
Collapse
X
-
Read Only Parameter Value Tip
Want to show a parameter value as read only and not allow any changes? Use the [ReadOnlyAttribute(true)] attribute as shown below:
Code:Tags: None
-
I believe one can get the same effect by just providing only a getter. and no setter. No?Originally posted by whitmark View PostWant to show a parameter value as read only and not allow any changes? Use the [ReadOnlyAttribute(true)] attribute as shown below:
Code:/// <summary> /// </summary> [Description("Number of bars for smoothing")] [GridCategory("Parameters")] [ReadOnlyAttribute(true)] public int Smooth { get { return smooth; } set { smooth = Math.Max(1, value); } }
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by kinfxhk, 07-14-2026, 09:39 AM
|
0 responses
125 views
0 likes
|
Last Post
by kinfxhk
07-14-2026, 09:39 AM
|
||
|
Started by kinfxhk, 07-13-2026, 10:18 AM
|
0 responses
105 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 10:18 AM
|
||
|
Started by kinfxhk, 07-13-2026, 09:50 AM
|
0 responses
85 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 09:50 AM
|
||
|
Started by kinfxhk, 07-13-2026, 07:21 AM
|
0 responses
105 views
0 likes
|
Last Post
by kinfxhk
07-13-2026, 07:21 AM
|
||
|
Started by kinfxhk, 07-11-2026, 02:11 AM
|
0 responses
85 views
0 likes
|
Last Post
by kinfxhk
07-11-2026, 02:11 AM
|

Comment