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

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

Syntax

C#
public ValueChangingEventArgs(
	Cell cell,
	Object newValue,
	Object oldValue
)
Visual Basic
Public Sub New ( _
	cell As Cell, _
	newValue As Object, _
	oldValue As Object _
)
Visual C++
public:
ValueChangingEventArgs(
	Cell^ cell, 
	Object^ newValue, 
	Object^ oldValue
)

Parameters

cell
Type: Ntreev.Windows.Forms.Grid..::..Cell
이벤트의 대상이 되는 Cell의 인스턴스입니다.
newValue
Type: System..::..Object
새로 변경될 값입니다.
oldValue
Type: System..::..Object
변경되기 이전의 값입니다.

See Also