셀의 값을 그릴때 호출됩니다.

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

Syntax

C#
void PaintValue(
	Graphics graphics,
	Rectangle renderRect,
	Rectangle clipRect,
	IStyle style,
	Object value
)
Visual Basic
Sub PaintValue ( _
	graphics As Graphics, _
	renderRect As Rectangle, _
	clipRect As Rectangle, _
	style As IStyle, _
	value As Object _
)
Visual C++
void PaintValue(
	Graphics^ graphics, 
	Rectangle renderRect, 
	Rectangle clipRect, 
	IStyle^ style, 
	Object^ value
)

Parameters

graphics
Type: System.Drawing..::..Graphics
그리기에 사용되는 그래픽 개체입니다.
renderRect
Type: System.Drawing..::..Rectangle
그리기에 대상이 되는 셀의 안쪽 영역입니다.
clipRect
Type: System.Drawing..::..Rectangle
클립 영역을 나타냅니다.
style
Type: Ntreev.Windows.Forms.Grid..::..IStyle
그리기에 대상이 되는 셀의 스타일 정보를 가져올 수 있는 개체입니다.
value
Type: System..::..Object
그리기에 대상이 되는 셀의 값입니다.

See Also