 |
BeginPath ..msdn Add comment W32 Constants Translate this page |
 |
 |
|
The BeginPath function opens a path bracket in the specified device context. |
 |
 |
| Code examples: |
 |
|
|
 |
 |
| Declaration: |
 |
 |
BOOL BeginPath(
HDC hdc // handle to DC
);
|
 |
 |
 |
| FoxPro declaration: |
 |
 |
DECLARE INTEGER BeginPath IN gdi32;
INTEGER hdc
|
 |
 |
 |
| Parameters: |
 |
hdc
[in] Handle to the device context. |
 |
 |
| Return value: |
 |
If the function succeeds, the return value is nonzero (but it is not a handle to the path). If the function fails, the return value is zero.
|
 |
 |
| My comment: |
 |
After a path bracket is open, an application can begin calling GDI drawing functions to define the points that lie in the path. An application can close an open path bracket by calling the EndPath function.
Several drawing functions can be used on the different Windows operating systems: TextOut, CloseFigure, LineTo, MoveToEx, Polygon, Polyline etc. |
 |
 |
| Word Index links for the BeginPath : |
 |
|
|
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2001-09-14 12:00:00 | | Modified: | 2001-11-26 16:03:38 | Visited in last 7 days: 14 |