UIElement3DAutomationPeer.IsOffscreenCore Method

Definition

Returns a value that indicates whether the UIElement3D that is associated with this UIElement3DAutomationPeer is off the screen. This method is called by IsOffscreen().

protected:
 override bool IsOffscreenCore();
protected override bool IsOffscreenCore ();
override this.IsOffscreenCore : unit -> bool
Protected Overrides Function IsOffscreenCore () As Boolean

Returns

true if the element is not on the screen; otherwise, false.

Remarks

This property does not indicate whether the element is visible. In some circumstances, an element is on the screen but is still not visible. For example, if the element is on the screen but obscured by other elements, it might not be visible. In this case the method returns false.

Classes that inherit from UIElement3DAutomationPeer typically do not need to override IsOffscreenCore.

UIElement3DAutomationPeer is introduced in the .NET Framework version 3.5. For more information, see Versions and Dependencies.

Applies to