AccessibilityNodeInfo.PaneTitleFormatted 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.
Get the title of the pane represented by this node. -or- If this node represents a visually distinct region of the screen that may update separately from the rest of the window, it is considered a pane.
public virtual Java.Lang.ICharSequence? PaneTitleFormatted { [Android.Runtime.Register("getPaneTitle", "()Ljava/lang/CharSequence;", "GetGetPaneTitleHandler", ApiSince=28)] get; [Android.Runtime.Register("setPaneTitle", "(Ljava/lang/CharSequence;)V", "GetSetPaneTitle_Ljava_lang_CharSequence_Handler", ApiSince=28)] set; }
[<get: Android.Runtime.Register("getPaneTitle", "()Ljava/lang/CharSequence;", "GetGetPaneTitleHandler", ApiSince=28)>]
[<set: Android.Runtime.Register("setPaneTitle", "(Ljava/lang/CharSequence;)V", "GetSetPaneTitle_Ljava_lang_CharSequence_Handler", ApiSince=28)>]
member this.PaneTitleFormatted : Java.Lang.ICharSequence with get, set
Property Value
The title of the pane represented by this node, or null
if this node does
not represent a pane.
- Attributes
Remarks
Property getter documentation:
Get the title of the pane represented by this node.
Java documentation for android.view.accessibility.AccessibilityNodeInfo.getPaneTitle()
.
Property setter documentation:
If this node represents a visually distinct region of the screen that may update separately from the rest of the window, it is considered a pane. Set the pane title to indicate that the node is a pane, and to provide a title for it.
<strong>Note:</strong> Cannot be called from an android.accessibilityservice.AccessibilityService
. This class is made immutable before being delivered to an AccessibilityService.
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.