- control
- Rendering surface, or the place for which the objects are going to be displayed on.
- drawRectangle
- Part of the control surface to draw on. Pass null to render on the entire control surface.
| Visual Basic (Declaration) | |
|---|---|
Public Sub Render( _ ByVal control As Control, _ ByVal drawRectangle As Rectangle _ ) | |
| Visual Basic (Usage) | Copy Code |
|---|---|
| |
| C# | |
|---|---|
public void Render( Control control, Rectangle drawRectangle ) | |
| C++/CLI | |
|---|---|
public: void Render( Control control, Rectangle drawRectangle ) | |
Parameters
- control
- Rendering surface, or the place for which the objects are going to be displayed on.
- drawRectangle
- Part of the control surface to draw on. Pass null to render on the entire control surface.
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
Copy Code