CADability dotNET
Delegate definition for FilterCommandEvent

Namespace: CADability.UserInterface
Assembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)

Syntax

C#
public delegate void FilterCommandDelegate(
	GeoPointProperty sender,
	string menuId,
	CommandState commandState,
	ref bool handled
)
Visual Basic
Public Delegate Sub FilterCommandDelegate ( _
	sender As GeoPointProperty, _
	menuId As String, _
	commandState As CommandState, _
	ByRef handled As Boolean _
)
Visual C++
public delegate void FilterCommandDelegate(
	GeoPointProperty^ sender, 
	String^ menuId, 
	CommandState^ commandState, 
	bool% handled
)

Parameters

sender
Type: CADability.UserInterface..::..GeoPointProperty
this object
menuId
Type: System..::..String
menu id of the selected menu entry
commandState
Type: CADability.UserInterface..::..CommandState
when not null, asks for the state of the menu
handled
Type: System..::..Boolean%
set to true if handled

See Also