AccessibilityNodeInfo.Dismissable 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 if the node can be dismissed. -or- Sets if the node can be dismissed.
public virtual bool Dismissable { [Android.Runtime.Register("isDismissable", "()Z", "GetIsDismissableHandler")] get; [Android.Runtime.Register("setDismissable", "(Z)V", "GetSetDismissable_ZHandler")] set; }
[<get: Android.Runtime.Register("isDismissable", "()Z", "GetIsDismissableHandler")>]
[<set: Android.Runtime.Register("setDismissable", "(Z)V", "GetSetDismissable_ZHandler")>]
member this.Dismissable : bool with get, set
Property Value
If the node can be dismissed.
- Attributes
Remarks
Property getter documentation:
Gets if the node can be dismissed.
Java documentation for android.view.accessibility.AccessibilityNodeInfo.isDismissable()
.
Property setter documentation:
Sets if the node can be dismissed.
<strong>Note:</strong> Cannot be called from an android.accessibilityservice.AccessibilityService
. This class is made immutable before being delivered to an AccessibilityService.
Java documentation for android.view.accessibility.AccessibilityNodeInfo.setDismissable(boolean)
.
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.