PopupWindow.IsClippedToScreen Property

Definition

Indicates whether this popup will be clipped to the screen and not to the containing window<p/> -or- Clip this popup window to the screen, but not to the containing window.

public virtual bool IsClippedToScreen { [Android.Runtime.Register("isClippedToScreen", "()Z", "GetIsClippedToScreenHandler", ApiSince=29)] get; [Android.Runtime.Register("setIsClippedToScreen", "(Z)V", "GetSetIsClippedToScreen_ZHandler", ApiSince=29)] set; }
[<get: Android.Runtime.Register("isClippedToScreen", "()Z", "GetIsClippedToScreenHandler", ApiSince=29)>]
[<set: Android.Runtime.Register("setIsClippedToScreen", "(Z)V", "GetSetIsClippedToScreen_ZHandler", ApiSince=29)>]
member this.IsClippedToScreen : bool with get, set

Property Value

true if popup will be clipped to the screen instead of the window, false otherwise

Attributes

Remarks

Property getter documentation:

Indicates whether this popup will be clipped to the screen and not to the containing window<p/>

Java documentation for android.widget.PopupWindow.isClippedToScreen().

Property setter documentation:

Clip this popup window to the screen, but not to the containing window.

If the popup is showing, calling this method will take effect only the next time the popup is shown or through a manual call to one of the #update() methods.

Java documentation for android.widget.PopupWindow.setIsClippedToScreen(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.

Applies to