ContentIslandAutomationProviderRequestedEventArgs.Handled Property

Definition

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

Boolean

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.

Applies to