How create a pie or chord region
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
I don't know how create a custom region! thanks a lot!
-
I don't know how create a custom region! thanks a lot!
You can call BeginPath on a DC, Then you could call your pie or chord function, and then End the path with EndPath, the path is stored inside of the region. Then you can call PathToRegion on that DC and a new region will be created with that path.