|
Rank: Newbie Groups: Member
Joined: 5/19/2010 Posts: 9
|
Is there a way to programmatically set the properties within the MaskedEditSegment.
Example: MaskedEditSegment.MaxValue = 999 MaskedEditSegment.MinValue = 0
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi, Yes. You will have to have the Segment declared (or dynamically created if the number of segments can change). Then do something like:
Code: C#
MaskedEdit1.Segments[0].MaxValue = 999;
Thanks
|
|
Rank: Newbie Groups: Member
Joined: 5/19/2010 Posts: 9
|
Thank you very much for responding so quickly. It worked !!
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Great to hear that. Thanks for the update!
|
|