Click or drag to resize
XDL

NXImageLayerBoundBox_Event_Bound Delegate

사용자가 마우스를 이용하여 경계영역을 변경할 때 이 함수가 호출된다.

Namespace:  Pixoneer.NXDL.NXImage
Assembly:  NXImage (in NXImage.dll) Version: 2.0.3.31
Syntax
C#
public delegate bool NXImageLayerBoundBox_Event_Bound(
	ref double minx,
	ref double maxx,
	ref double miny,
	ref double maxy
)

Parameters

minx
Type: SystemDouble
[Out] 경계영역의 x 최소값.
maxx
Type: SystemDouble
[Out] 경계영역의 x 최대값.
miny
Type: SystemDouble
[Out] 경계영역의 y 최소값.
maxy
Type: SystemDouble
[Out] 경계영역의 y 최대값.

Return Value

Type: Boolean
성공하면 true를 반환하고 그렇지 않으면, false를 반환한다.
See Also