BOOL BeginPath( );
Return Value
Nonzero if the function is successful; otherwise 0.//如果打开路径层成功则返回值为一个非零值,否则返回0;
Remarks
Opens a path bracket in the device context. 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 member function. When an application calls BeginPath, any previous paths are discarded.
//在设备描述表中打开一个路劲层,一个路径层打开后,应用程序就可以调用GDI函数(图形设备接口函数),去设置处在这个路径层中的点,应用程序通过调用EndPath函数将路径层关闭。当应用程序调用BeginPath的时候,之前的路径就会被弃置不理。
(二)
CDC::EndPath
BOOL EndPath( );
Return Value
Nonzero if the function is successful; otherwise 0..//如果关闭路径层成功则返回值为一个非零值,否则返回0;
Remarks
Closes a path bracket and selects the path defined by the bracket into the device context.
//用于关闭一个路径层,并且将由这个路径层定义的路径选入设备描述表当中
在绘图时,如果希望图的某一部分与其他部分分开处理,就可以利用路径层的独立性 (三)
Return Value
Nonzero if the function is successful; otherwise 0.//函数成功返回值为非零,否则为0;
Parameters
nMode //函数形参可取如下值
Specifies the way to use the path. The following values are allowed:
//指定使用路径的方式,以下值是可取的
RGN_AND The new clipping region includes the intersection (overlapping areas) of the current clipping region and the current path.//交集,也就是说,如果在两个剪辑区域里面都有作图的话,最后的效果是只在剪辑区的交集处显示图形RGN_COPY The new clipping region is the current path.//新的剪辑区就是新建路径层上的剪辑区RGN_DIFF The new clipping region includes the areas of the current clipping region, and those of the current path are excluded.//新的剪切区是旧的剪切区中除去路径层的部分RGN_OR The new clipping region includes the union (combined areas) of the current clipping region and the current path.//新的剪切区是旧的剪切区和路径层的并集RGN_XOR The new clipping region includes the union of the current clipping region and the current path, but without the overlapping areas.//新的剪切区是旧的剪切区和路径层的并集,但除去他们的交集部分Remarks
Selects the current path as a clipping region for the device context, combining the new region with any existing clipping region by using the specified mode. The device context identified must contain a closed path.