MaskedTextProvider.FindUnassignedEditPositionFrom(Int32, Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the position of the first unassigned editable position after the specified position using the specified search direction.
public:
int FindUnassignedEditPositionFrom(int position, bool direction);
public int FindUnassignedEditPositionFrom (int position, bool direction);
member this.FindUnassignedEditPositionFrom : int * bool -> int
Public Function FindUnassignedEditPositionFrom (position As Integer, direction As Boolean) As Integer
Parameters
- position
- Int32
The zero-based position in the formatted string to start the search.
- direction
- Boolean
A Boolean indicating the search direction; either true
to search forward or false
to search backward.
Returns
If successful, an Int32 representing the zero-based position of the first unassigned editable position encountered; otherwise InvalidIndex.
Remarks
The formatted string is composed of editable characters and literals copied from the mask. The editable character positions will either be occupied by the prompt character copied from the mask if they are unassigned, or with a valid input character if they have been assigned an input.
The FindUnassignedEditPositionFrom method is used to search for the first unassigned character after a specified position and search direction. The prompt character should occupy this position.
The FindNonEditPositionFrom and FindAssignedEditPositionFrom methods are complements of this method.