Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ InsertAt() [4/4]

bool System.ComponentModel.MaskedTextProvider.InsertAt ( string input,
int position,
out int testPosition,
out MaskedTextResultHint resultHint )
inline

Definition at line 770 of file MaskedTextProvider.cs.

771 {
772 if (input == null)
773 {
774 throw new ArgumentNullException("input");
775 }
777 {
778 testPosition = position;
779 resultHint = MaskedTextResultHint.PositionOutOfRange;
780 return false;
781 }
783 }
bool InsertAtInt(string input, int position, out int testPosition, out MaskedTextResultHint resultHint, bool testOnly)

References System.ComponentModel.MaskedTextProvider._testString, System.input, System.ComponentModel.MaskedTextProvider.InsertAtInt(), and System.Text.StringBuilder.Length.