Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Allow only numbers in string propertie (Strategy Tab)
Collapse
X
-
Allow only numbers in string propertie (Strategy Tab)
Hi, I have a public string property and would like to protect it so that only numbers can be entered. For example, if 120000 is entered, it should be automatically formatted to 12:00:00. How can I best solve this? Does anyone have an idea, is there an attribute or similar?
-
Hello sidlercom80,
You could add logic into the set { } to check what value was set, if it wasn't a number you could pass a default number as the set value instead of whatever the user had used.
Here is a simple example of a property that simply checks if the string is equal to "0", if its not 0 it will set the string to 0. You could add any other conditions into a set just like that to parse the string to a number or do whatever task was needed before setting the value.Code:private string test = ""; public string Test { get { return test.ToString(); } set { if(value != "0") test = "0"; else test = value; } }
-
Hi _Jesse, here is my solution:
Code:public string SessionStartTimeString { get { return sessionStartTimeString; } set { if (value != sessionStartTimeString) { var pattern = @"(?:[01]\d|2[0-3]):(?:[0-5]\d):(?:[0-5]\d)" var regexp = new Regex(pattern); if (regexp.IsMatch(value)) { sessionStartTimeString = value; } } } }
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
88 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
135 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
68 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
119 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
69 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment