View.AccessibilityDelegate.SendAccessibilityEvent(View, EventTypes) 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 of the given type.
[Android.Runtime.Register("sendAccessibilityEvent", "(Landroid/view/View;I)V", "GetSendAccessibilityEvent_Landroid_view_View_IHandler")]
public virtual void SendAccessibilityEvent (Android.Views.View host, Android.Views.Accessibility.EventTypes eventType);
[<Android.Runtime.Register("sendAccessibilityEvent", "(Landroid/view/View;I)V", "GetSendAccessibilityEvent_Landroid_view_View_IHandler")>]
abstract member SendAccessibilityEvent : Android.Views.View * Android.Views.Accessibility.EventTypes -> unit
override this.SendAccessibilityEvent : Android.Views.View * Android.Views.Accessibility.EventTypes -> unit
Parameters
- host
- View
The View hosting the delegate.
- eventType
- EventTypes
The type of the event to send.
- Attributes
Remarks
Sends an accessibility event of the given type. If accessibility is not enabled this method has no effect.
The default implementation behaves as View#sendAccessibilityEvent(int) View#sendAccessibilityEvent(int)
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.