Click or drag to resize

IFrame Methods

The IFrame type exposes the following members.

Methods
  NameDescription
Public methodCreateJsArrayT
Creates a new IJsArray and copies the contents of the IEnumerableT to it.
Public methodCreateJsArrayBuffer
Creates a new IJsArrayBuffer and copies the contents of the byte array to it.
Public methodCreateJsMapTKey, TValue(IDictionaryTKey, TValue)
Creates a new IJsMap and copies the contents of the IDictionaryTKey, TValue to it.
Public methodCreateJsMapTKey, TValue(IReadOnlyDictionaryTKey, TValue)
Creates a new IJsMap and copies the contents of the IReadOnlyDictionaryTKey, TValue to it.
Public methodCreateJsSetT
Creates a new IJsSet and copies the contents of the IEnumerableT to it.
Public methodExecute
Executes the given command in the frame. Before executing the command, it's recommended to check whether it can be executed or not using the IsCommandEnabled(EditorCommand) method.
Public methodExecuteJavaScript(String, Boolean)
Asynchronously executes JavaScript code using the current context.
Public methodExecuteJavaScriptT(String, Boolean)
Asynchronously executes JavaScript code using the current context and converts the execution result to the specified .NET type.
Public methodInspect(Point)
Inspects the given location in the frame and returns the result of inspection.
Public methodInspect(Int32, Int32)
Inspects the given location in the frame and returns the result of inspection.
Public methodIsCommandEnabled
Indicates if the command with the given command can be executed in the frame. Some commands can be executed only under certain conditions. For example, the InsertText(String) command can be executed only if there's a focused text field in the frame.
Public methodLoadUrl(String)
Navigates the frame to a resource identified by the given url.
Public methodLoadUrl(String, TimeSpan)
Navigates the frame to a resource identified by the given url.
Public methodPrint
Requests printing of the currently loaded web page in this frame.
Public methodViewSource
Opens a popup with the frame's source like the browser does when showing page source.
Top
Extension Methods
  NameDescription
Public Extension MethodParseJsonString(String)Overloaded.
Creates an object that represents the result of parsing the given string in JSON format.
(Defined by JsonExtensions.)
Public Extension MethodParseJsonStringT(String)Overloaded.
Creates an object that represents the result of parsing the given string in JSON format.
(Defined by JsonExtensions.)
Top
See Also