Make CheckInteger public
This commit is contained in:
@ -34,7 +34,7 @@ namespace Elwig.Helpers {
|
||||
return CheckInteger(input, required, -1);
|
||||
}
|
||||
|
||||
private static ValidationResult CheckInteger(TextBox input, bool required, int maxLen) {
|
||||
public static ValidationResult CheckInteger(TextBox input, bool required, int maxLen) {
|
||||
string text = "";
|
||||
int pos = input.CaretIndex;
|
||||
for (int i = 0; i < input.Text.Length; i++) {
|
||||
|
Reference in New Issue
Block a user