Defines the method to be called when the command is invoked.

Namespace: FirstFloor.Documents.Controls.Commands
Assembly: FirstFloor.Documents.Controls (in FirstFloor.Documents.Controls.dll) Version: 2.5.0.0 (2.5.1.0)

Syntax

C#
public void Execute(
	Object parameter
)
Visual Basic
Public Sub Execute ( _
	parameter As Object _
)
Visual C++
public:
virtual void Execute(
	Object^ parameter
) sealed

Parameters

parameter
Type: System..::..Object
Data used by the command. If the command does not require data to be passed, this object can be set to null.

Implements

ICommand..::..Execute(Object)

See Also