Click or drag to resize
XDL

NXImageLayer_Event_FilterPreTranslateMessage Delegate

레이어 메시지 처리기 진입 시점에서 불리는 사용자 정의 메시지 핸들러. 내부 메시지 처리를 선택적으로 이용하거나 변경할 때 쓴다.

Namespace:  Pixoneer.NXDL.NXImage
Assembly:  NXImage (in NXImage.dll) Version: 2.0.3.31
Syntax
C#
public delegate bool NXImageLayer_Event_FilterPreTranslateMessage(
	NXImageLayer sender,
	Message msg,
	out bool result
)

Parameters

sender
Type: Pixoneer.NXDL.NXImageNXImageLayer
메시지 발생 레이어.
msg
Type: System.Windows.FormsMessage
발생한 윈도 메시지.
result
Type: SystemBoolean
[Out] 메시지 처리 결과. 내부 핸들러에서 정상 취급한 메시지인 경우에만 의미를 갖는다.

Return Value

Type: Boolean
핸들러에서 메시지 취급/처리 여부를 나타낸다. 만약 참이면 내부 메시지 처리를 무시하고, 거짓이면 레이어 종류에 따라 정의된 내부 메시지 처리를 수행한다.
Remarks
주의! 편집기 등 각종 레이어에서 내부 메시지 처리 이후 불리는 OnPreTranslateMessage와 발생 시점과 기능이 다르다.
See Also