셀을 그릴때 호출됩니다.

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

Syntax

C#
protected virtual void PaintValue(
	Graphics graphics,
	Rectangle renderRect,
	Rectangle clipRect,
	IStyle style,
	Object value
)
Visual Basic
Protected Overridable Sub PaintValue ( _
	graphics As Graphics, _
	renderRect As Rectangle, _
	clipRect As Rectangle, _
	style As IStyle, _
	value As Object _
)
Visual C++
protected:
virtual 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
그려질 셀의 값을 나타냅니다.

Implements

IValuePainter..::..PaintValue(Graphics, Rectangle, Rectangle, IStyle, Object)

See Also