CoreTextTextUpdatingEventArgs.Result Property
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.
Gets or sets a value that indicates the result of handling the TextUpdating event. The default value is Succeeded but if you can't action the operation as the text input server expects then before returning from the event handler set the property to the appropriate value to indicate what has happened.
public:
property CoreTextTextUpdatingResult Result { CoreTextTextUpdatingResult get(); void set(CoreTextTextUpdatingResult value); };
CoreTextTextUpdatingResult Result();
void Result(CoreTextTextUpdatingResult value);
public CoreTextTextUpdatingResult Result { get; set; }
var coreTextTextUpdatingResult = coreTextTextUpdatingEventArgs.result;
coreTextTextUpdatingEventArgs.result = coreTextTextUpdatingResult;
Public Property Result As CoreTextTextUpdatingResult
Property Value
The result of handling the TextUpdating event. The default is Succeeded.