nativeFrame - web automation property

Returns a native MSHTML frame or iframe object ( IHTMLWindow2 ) represented by the current web automation library Frame object.

Applies to:
Frame
  var native = frameObj.nativeFrame;
Arguments:
None.
Remarks:
With this Internet Explorer automation property, get access to all methods and properties of the IHTMLWindow2 native frame or iframe object.
Example:
var coreObj    = new ActiveXObject("Twebst.Core");
var newBrowser = coreObj.StartBrowser("http://codecentrix.blogspot.com/");
var frame      = newBrowser.topFrame.nativeFrame;

frame.navigate("http://www.codecentrix.com");
		
See also:
Frame | nativeBrowser | nativeElement

© 2014 CodeCentrix Software. All rights reserved.