CADability dotNET
Delegate definition for background painting event. The painting of the coordinate cross and arrows, the grid and the DrawingPlane can be modified using this event

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

Syntax

C#
public delegate void PaintBackgroundDelegate(
	IPaintTo3D paintToBackground,
	ModelView modelView,
	out ModelView..::..BackgroungTaskHandled handled
)
Visual Basic
Public Delegate Sub PaintBackgroundDelegate ( _
	paintToBackground As IPaintTo3D, _
	modelView As ModelView, _
	<OutAttribute> ByRef handled As ModelView..::..BackgroungTaskHandled _
)
Visual C++
public delegate void PaintBackgroundDelegate(
	IPaintTo3D^ paintToBackground, 
	ModelView^ modelView, 
	[OutAttribute] ModelView..::..BackgroungTaskHandled% handled
)

Parameters

paintToBackground
Type: CADability..::..IPaintTo3D
Painting engine
modelView
Type: CADability..::..ModelView
ModelView issuing the event
handled
Type: CADability..::..ModelView..::..BackgroungTaskHandled%
Set flags to indicate which tasks were handled

See Also