Initializes a new instance of the BCExtensionCommand class.

Namespace: BlueCieloECM.InnoCielo.Meridian.Design
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)

Syntax

C#
public BCExtensionCommand(
	string caption,
	EventHandler<CommandEventArgs> onExecute
)
Visual Basic
Public Sub New ( _
	caption As String, _
	onExecute As EventHandler(Of CommandEventArgs) _
)
Visual C++
public:
BCExtensionCommand(
	String^ caption, 
	EventHandler<CommandEventArgs^>^ onExecute
)

Parameters

caption
Type: System..::..String
The caption of the menu item that invokes the command.
onExecute
Type: System..::..EventHandler<(Of <(<'CommandEventArgs>)>)>
The EventHandler<(Of <(<'TEventArgs>)>)> that handles the Execute event for the command.

See Also