CADability dotNET
Delegate for ActionDoneEvent.

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

Syntax

C#
public delegate void ActionDoneDelegate(
	ConstructAction ca,
	bool success
)
Visual Basic
Public Delegate Sub ActionDoneDelegate ( _
	ca As ConstructAction, _
	success As Boolean _
)
Visual C++
public delegate void ActionDoneDelegate(
	ConstructAction^ ca, 
	bool success
)

Parameters

ca
Type: CADability.Actions..::..ConstructAction
this ConstructAction
success
Type: System..::..Boolean
true: an object was constructed and added to the model. false: action was aborted or object not fully defined

See Also