Share via


BrowserHelper.IsBrowserDocumentWindow Method

Definition

Overloads

IsBrowserDocumentWindow(UITechnologyElement)

Determines whether the provided element is the browser document window.

IsBrowserDocumentWindow(IntPtr)

Determines whether the provided window handle refers to the browser document window.

IsBrowserDocumentWindow(UITechnologyElement)

Determines whether the provided element is the browser document window.

public:
 abstract bool IsBrowserDocumentWindow(Microsoft::VisualStudio::TestTools::UITest::Extension::UITechnologyElement ^ element);
public abstract bool IsBrowserDocumentWindow (Microsoft.VisualStudio.TestTools.UITest.Extension.UITechnologyElement element);
abstract member IsBrowserDocumentWindow : Microsoft.VisualStudio.TestTools.UITest.Extension.UITechnologyElement -> bool
Public MustOverride Function IsBrowserDocumentWindow (element As UITechnologyElement) As Boolean

Parameters

Returns

true if the provided element is the browser document window; otherwise, false.

Applies to

IsBrowserDocumentWindow(IntPtr)

Determines whether the provided window handle refers to the browser document window.

public:
 abstract bool IsBrowserDocumentWindow(IntPtr windowHandle);
public abstract bool IsBrowserDocumentWindow (IntPtr windowHandle);
abstract member IsBrowserDocumentWindow : nativeint -> bool
Public MustOverride Function IsBrowserDocumentWindow (windowHandle As IntPtr) As Boolean

Parameters

windowHandle
IntPtr

nativeint

An IntPtr that represents the window handle.

Returns

true if the designated window is the browser document window; otherwise, false.

Applies to