Skip to main content
Pie
ra0

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxCanvas.BeginPath Method

In This Article

Opens a GDI path bracket for the device context of the underlying canvas.

#Declaration

Delphi
procedure BeginPath;

#Remarks

A GDI path is a complex, irregular shape formed by multiple draw calls enclosed between the BeginPath and EndPath procedure calls. You can treat the path as a single primitive or convert it into a region. Call the BeginPath procedure to open a GDI path bracket. Then you can call the following methods to create a path from:

Then, call EndPath to finish the path and select it for the device context of the underlying canvas. This operation destroys the path previously selected for the same context.

See Also