The ExtFloodFill function fills an area of the display surface with the current brush.
BOOL ExtFloodFill(
HDC hdc, |
// handle to device context |
int nXStart, |
// x-coordinate where filling begins |
int nYStart, |
// y-coordinate where filling begins |
COLORREF crColor, |
// fill color |
UINT fuFillType |
// fill type |
); |
Value |
Meaning |
FLOODFILLBORDER |
The fill area is bounded by the color specified by the crColor parameter. This style is identical to the filling performed by the FloodFill function. |
FLOODFILLSURFACE |
The fill area is defined by the color that is specified by crColor. Filling continues outward in all directions as long as the color is encountered. This style is useful for filling areas with multicolored boundaries. |
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call GetLastError.
Following are some of the reasons this function might fail:
If the fuFillType parameter is FLOODFILLBORDER, Windows assumes that the area to be filled is completely bounded by the color specified by the crColor parameter. The function begins filling at the point specified by the nXStart and nYStart parameters and continues in all directions until it reaches the boundary.
If fuFillType is FLOODFILLSURFACE, Windows assumes that the area to be filled is a single color. The function begins to fill the area at the point specified by nXStart and nYStart and continues in all directions, filling all adjacent regions containing the color specified by crColor.
Only memory device contexts and devices that support raster-display operations support the ExtFloodFill function. To determine whether a device supports this technology, use the GetDeviceCaps function.
file: /Techref/os/win/api/win32/func/src/f23_6.htm, 5KB, , updated: 2000/4/7 11:19, local time: 2024/11/8 05:04,
3.135.204.31:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/techref/os/win/api/win32/func/src/f23_6.htm"> ExtFloodFill</A> |
Did you find what you needed? |