Table of Contents

Method Inspect

Namespace
DotNetBrowser.Frames
Assembly
DotNetBrowser.dll

Inspect(Point)

Inspects the given location in the frame and returns the result of inspection.

PointInspection Inspect(Point location)

Parameters

location Point

A point in the frame's view. Cannot be null.

Returns

PointInspection

The result of inspection that contains the details about the DOM node at the given location.

Exceptions

ObjectDisposedException

The IFrame object has already been disposed.

ArgumentException

The location is null.

Inspect(int, int)

Inspects the given location in the frame and returns the result of inspection.

PointInspection Inspect(int x, int y)

Parameters

x int

a horizontal coordinate on the web page

y int

a vertical coordinate on the web page

Returns

PointInspection

The result of inspection that contains the details about the DOM node at the given location.

Exceptions

ObjectDisposedException

The IFrame object has already been disposed.