View.AccessibilityDelegate.SendAccessibilityEventUnchecked 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.
Sends an accessibility event.
[Android.Runtime.Register("sendAccessibilityEventUnchecked", "(Landroid/view/View;Landroid/view/accessibility/AccessibilityEvent;)V", "GetSendAccessibilityEventUnchecked_Landroid_view_View_Landroid_view_accessibility_AccessibilityEvent_Handler")]
public virtual void SendAccessibilityEventUnchecked (Android.Views.View host, Android.Views.Accessibility.AccessibilityEvent e);
[<Android.Runtime.Register("sendAccessibilityEventUnchecked", "(Landroid/view/View;Landroid/view/accessibility/AccessibilityEvent;)V", "GetSendAccessibilityEventUnchecked_Landroid_view_View_Landroid_view_accessibility_AccessibilityEvent_Handler")>]
abstract member SendAccessibilityEventUnchecked : Android.Views.View * Android.Views.Accessibility.AccessibilityEvent -> unit
override this.SendAccessibilityEventUnchecked : Android.Views.View * Android.Views.Accessibility.AccessibilityEvent -> unit
Parameters
- host
- View
The View hosting the delegate.
The event to send.
- Attributes
Remarks
Sends an accessibility event. This method behaves exactly as #sendAccessibilityEvent(View, int)
but takes as an argument an empty AccessibilityEvent
and does not perform a check whether accessibility is enabled.
The default implementation behaves as View#sendAccessibilityEventUnchecked(AccessibilityEvent) View#sendAccessibilityEventUnchecked(AccessibilityEvent)
for the case of no accessibility delegate been set.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.