DrawEscape

DrawEscape

VB声明

Declare Function DrawEscape Lib "gdi32" Alias "DrawEscape" (ByVal hdc As Long, ByVal nEscape As Long, ByVal cbInput As Long, ByVal lpszInData As String) As Long

说明

换码(Escape)函数将数据直接发至显示设备驱动程序(在vb里使用:能够使用。但由于Escape对设备有较强的依赖性,所以除非万不得以,尽量不要用它)

返回值

Long,非零表示成功,零表示错误(QUERYESCSUPPORT换码例外;返回TRUE表示支持特定的换码;否则返回零)

参数表

参数

类型及说明

hdc

Long,显示设备的设备场景

nEscape

Long,指定欲执行的换码的一个常数

cbInput

Long,输入缓冲区的长度

lpszInData

String,输入字串或缓冲区

注解

可用QUERYESCSUPPORT换码判断一个特定的换码是否得到当前显示驱动程序的支持

Top