HtmlWindow.Parent Proprietà
Definizione
Ottiene la finestra che si trova al di sopra della finestra corrente in una pagina contenente frame.Gets the window which resides above the current one in a page containing frames.
public:
property System::Windows::Forms::HtmlWindow ^ Parent { System::Windows::Forms::HtmlWindow ^ get(); };
public System.Windows.Forms.HtmlWindow Parent { get; }
member this.Parent : System.Windows.Forms.HtmlWindow
Public ReadOnly Property Parent As HtmlWindow
Valore della proprietà
Oggetto HtmlWindow che contiene la finestra corrente.The HtmlWindow that owns the current window. Se la finestra corrente non è un frame
o non è incorporata all'interno di un frame
, restituisce null
.If the current window is not a FRAME
, or is not embedded inside of a FRAME
, it returns null
.
Commenti
In un documento che contiene frame, ciascuno FRAME
all'interno di un oggetto FRAMESET
funge da finestra figlio separata nella pagina.In a document containing frames, each FRAME
within a FRAMESET
acts as a separate child window on the page. L'elemento padre di ogni oggetto FRAME
è FRAMESET
che contiene FRAME
.The parent of each FRAME
is the FRAMESET
which contains the FRAME
.