CADability dotNET
Delegate definition for CalculateExtentForZoomTotalEvent. If handeled must return the extent which is considered as the zoom total extent. Standard implementation will return this.Extent.Project(pr)

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

Syntax

C#
public delegate BoundingRect CalculateExtentForZoomTotalDelegate(
	Model m,
	Projection pr
)
Visual Basic
Public Delegate Function CalculateExtentForZoomTotalDelegate ( _
	m As Model, _
	pr As Projection _
) As BoundingRect
Visual C++
public delegate BoundingRect CalculateExtentForZoomTotalDelegate(
	Model^ m, 
	Projection^ pr
)

Parameters

m
Type: CADability..::..Model
The Model
pr
Type: CADability..::..Projection
The Projection

Return Value

The extent projected to 2D

See Also