Click or drag to resize

IFrameExecute Method

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.

Namespace:  DotNetBrowser.Frames
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.16.0
Syntax
C#
bool Execute(
	EditorCommand command
)

Parameters

command
Type: DotNetBrowser.FramesEditorCommand
The command to execute. Cannot be null.

Return Value

Type: Boolean
true if the command has been executed successfully.
Exceptions
ExceptionCondition
ArgumentNullExceptionThe command is null.
ObjectDisposedExceptionThe IFrame object has already been disposed.
See Also