ColumnMouseEventArgs클래스의 새 인스턴스를 초기화합니다.

Namespace: Ntreev.Windows.Forms.Grid
Assembly: Ntreev.Windows.Forms.Grid (in Ntreev.Windows.Forms.Grid.dll) Version: 1.0.4216.32284

Syntax

C#
public ColumnMouseEventArgs(
	Column column,
	Point location
)
Visual Basic
Public Sub New ( _
	column As Column, _
	location As Point _
)
Visual C++
public:
ColumnMouseEventArgs(
	Column^ column, 
	Point location
)

Parameters

column
Type: Ntreev.Windows.Forms.Grid..::..Column
이벤트의 대상이 되는 Column의 인스턴스입니다.
location
Type: System.Drawing..::..Point
이벤트가 발생한 시점의 마우스의 위치입니다. 마우스의 위치는 Column기준의 지역좌표입니다.

See Also