AutoSuggestBoxTextChangedEventArgs.CheckCurrent 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 a Boolean value indicating if the current value of the TextBox is unchanged from the point in time when the TextChanged event was raised.
public:
virtual bool CheckCurrent() = CheckCurrent;
bool CheckCurrent();
public bool CheckCurrent();
function checkCurrent()
Public Function CheckCurrent () As Boolean
Returns
bool
Indicates if the current value of the TextBox is unchanged from the point in time when the TextChanged event was raised.
Remarks
This method is useful in determining if the text has changed since the event was raised, such as after obtaining suggestions from an asynchronous operation, in which time the user may have altered the text. Returns true if the text has not changed, false if it has.