HtmlWindow.Parent Property

Definition

Gets the window which resides above the current one in a page containing frames.

C#
public System.Windows.Forms.HtmlWindow Parent { get; }
C#
public System.Windows.Forms.HtmlWindow? Parent { get; }

Property Value

The HtmlWindow that owns the current window. If the current window is not a FRAME, or is not embedded inside of a FRAME, it returns null.

Remarks

In a document containing frames, each FRAME within a FRAMESET acts as a separate child window on the page. The parent of each FRAME is the FRAMESET which contains the FRAME.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also