NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

WinFormValueEditor.PaintValue

Paints a representation of the given value in the given Rectangle of the given Graphics. This method will only be called if the value editor specifies the StylePaintValue style.

[Visual Basic]
Overridable Public Sub PaintValue( _
   ByVal value As Object, _
   ByVal g As Graphics, _
   ByVal rect As Rectangle _
)
[C#]
public virtual void PaintValue(
   object value,
   Graphics g,
   Rectangle rect
);
[C++]
public: virtual void PaintValue(
   Object* value,
   Graphics* g,
   Rectangle rect
);
[JScript]
public function PaintValue(
   value : Object,
   g : Graphics,
   rect : Rectangle
);

Parameters

value
[To be supplied.]
g
[To be supplied.]
rect
[To be supplied.]

See Also

WinFormValueEditor Class | WinFormValueEditor Members | System.WinForms.Design Namespace