CoreTextSelectionUpdatingEventArgs.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 SelectionUpdating 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 CoreTextSelectionUpdatingResult Result { CoreTextSelectionUpdatingResult get(); void set(CoreTextSelectionUpdatingResult value); };
CoreTextSelectionUpdatingResult Result();
void Result(CoreTextSelectionUpdatingResult value);
public CoreTextSelectionUpdatingResult Result { get; set; }
var coreTextSelectionUpdatingResult = coreTextSelectionUpdatingEventArgs.result;
coreTextSelectionUpdatingEventArgs.result = coreTextSelectionUpdatingResult;
Public Property Result As CoreTextSelectionUpdatingResult
Property Value
The result of handling the SelectionUpdating event. The default is Succeeded.