ContentIslandAutomationProviderRequestedEventArgs.Handled 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 whether the AutomationProviderRequested event was handled.
public:
property bool Handled { bool get(); void set(bool value); };
bool Handled();
void Handled(bool value);
public bool Handled { get; set; }
var boolean = contentIslandAutomationProviderRequestedEventArgs.handled;
contentIslandAutomationProviderRequestedEventArgs.handled = boolean;
Public Property Handled As Boolean
Property Value
bool
True, if the event has been handled; otherwise, false. The default is false.
Remarks
Any value returned by the AutomationProvider property (whether it's null or a valid AutomationProvider instance) is only taken into account if Handled is set to true.
By marking this event as Handled, and leaving AutomationProvider null, any previous automation provider is removed.