BOOL TextOut(
HDC hdc,
// handle to device context
int nXStart,
// x-coordinate of starting position
int nYStart,
// y-coordinate of starting position
LPCTSTR lpString,
// pointer to string
int cbString
// number of characters in string
);
说明
文本绘图函数。也请参考SetTextAlign
返回值
非零表示成功,零表示失败。会设置GetLastError
参数表
参数 类型及说明
hdc
设备场景的句柄
nXStart,nYStart
绘图的起点,采用逻辑坐标
lpString
欲描绘的字串
cbString
字串中要描绘的字符数量
注解
在一个路径中,如绘图背景模式是“不透明”(opaque)——请参考SetBkMode函数,
那么创建的轮廓将由字符单元格减去字符构成。如背景模式为透明,轮廓就由字符的字样本身构成