下面是 用户自定义函数 的详细列表.
点击各个用户自定义函数名称得到详细介绍.
用户自定义函数 |
详细信息 |
_ArrayAdd |
添加一个指定的值到已存在的数组的末尾. |
_ArrayBinarySearch |
使用二进制搜索算法搜索一个一维数组. |
_ArrayCombinations |
返回所选数组每个元素相互可能出现的组合的一个数组. |
_ArrayConcatenate |
连接(合并)两个数组. |
_ArrayDelete |
从指定数组中删除指定的元素. |
_ArrayDisplay |
在一个列表视图(listview)中显示指定的一维或二维数组. |
_ArrayFindAll |
查找一维或二维数组的两个元素之间使用 _ArraySearch() 找到的所有匹配元素 |
_ArrayInsert |
添加一个新值到数组的指定位置. |
_ArrayMax |
返回数组中的最大值. |
_ArrayMaxIndex |
返回数组中最大值的索引. |
_ArrayMin |
返回数组中的最小值. |
_ArrayMinIndex |
返回数组中最小值的索引. |
_ArrayPermute |
返回一个原始数组中所有元素经过改序后的数组 |
_ArrayPop |
返回数组中最后一个元素, 同时删除这个元素. |
_ArrayPush |
添加新值而不增加数组大小, 在结尾插入新值则删除第一个,反之亦然. |
_ArrayReverse |
反序排列数组. |
_ArraySearch |
在一维或二维数组内部进行进行搜索. 类似于_ArrayBinarySearch(), 但数组不需要排序. |
_ArraySort |
使用快速排序法/插入排序法对一个一维或者二维数组进行排序. |
_ArraySwap |
交换数组的两个元素. |
_ArrayToClip |
发送数组内容到剪贴板, 每个元素由回车换行分隔. |
_ArrayToString |
将数组转化为一个由指定分隔符分割的单一字符串中. |
_ArrayTrim |
从一个数组中的所有要素删除一定数目的字符. |
_ArrayUnique |
返回一维数组的独特元素. |
_Assert |
插入显示语句错误的消息 |
_ChooseColor |
创建一个颜色对话框使用户可以选择颜色 |
_ChooseFont |
创建字体选择对话框,使用户能够选择逻辑字体属性. |
_ClipBoard_ChangeChain |
从剪切板查看器中移除指定窗口链 |
_ClipBoard_Close |
关闭剪切板 |
_ClipBoard_CountFormats |
返回当前剪切板中不同数据格式的数量 |
_ClipBoard_Empty |
清空剪切板并释放剪切板数据句柄. |
_ClipBoard_EnumFormats |
枚举剪切板中当前有效的数据格式 |
_ClipBoard_FormatStr |
返回一个标准剪切板格式中用字符串表示的格式(返回剪切板数据格式) |
_ClipBoard_GetData |
使用返回剪切板中指定格式的数据 |
_ClipBoard_GetDataEx |
使用返回剪切板中指定格式的数据 |
_ClipBoard_GetFormatName |
返回指定注册的格式的名称 |
_ClipBoard_GetOpenWindow |
返回当前打开剪切板的程序的窗口句柄 |
_ClipBoard_GetOwner |
返回剪切板的当前所有者窗口句柄 |
_ClipBoard_GetPriorityFormat |
返回指定列表中第一个有效的剪切板格式 |
_ClipBoard_GetSequenceNumber |
返回当前窗口状态的剪切板次序 |
_ClipBoard_GetViewer |
检索剪贴板查看器中的第一个窗口链句柄 |
_ClipBoard_IsFormatAvailable |
确定剪贴板是否包含指定格式的数据 |
_ClipBoard_Open |
打开剪切板并防止其它程序修改剪切板 |
_ClipBoard_RegisterFormat |
注册一个新的剪切板格式 |
_ClipBoard_SetData |
使用指定格式放置一个数据到剪切板 |
_ClipBoard_SetDataEx |
使用一个指定的剪切板格式替换剪切板中的数据 |
_ClipBoard_SetViewer |
添加指定窗口到剪贴板查看器链中 |
_ClipPutFile |
就像资源管理器一样复制文件到剪切板. |
_ColorConvertHSLtoRGB |
转换 HSL 颜色到 RGB 颜色. |
_ColorConvertRGBtoHSL |
转换 RGB 颜色到 HSL 颜色. |
_ColorGetBlue |
返回指定RGB颜色的蓝色成分. |
_ColorGetCOLORREF |
返回一个 COLORREF 颜色组成成分的数组. |
_ColorGetGreen |
返回指定RGB颜色的绿色成分. |
_ColorGetRed |
返回指定RGB颜色的红色成分. |
_ColorGetRGB |
返回 RGB 颜色中红绿蓝(Red,Green,Blue)颜色值的数组. |
_ColorSetCOLORREF |
返回一个 COLORREF 颜色. |
_ColorSetRGB |
返回 RGB 颜色 |
_Crypt_DecryptData |
使用提供的密钥解密数据 |
_Crypt_DecryptFile |
使用指定的密钥和算法解密文件 |
_Crypt_DeriveKey |
用算法和密码创建密钥 |
_Crypt_DestroyKey |
释放密钥使用的资源 |
_Crypt_EncryptData |
使用提供的密钥加密数据 |
_Crypt_EncryptFile |
以指定的密钥和算法加密文件 |
_Crypt_HashData |
以指定算法散列化数据 |
_Crypt_HashFile |
以指定算法将字符串散列化 |
_Crypt_Shutdown |
关闭加密库 |
_Crypt_Startup |
初始化加密库 |
_DateAdd |
计算一个指定的日期和间隔后的新日期. |
_DateDayOfWeek |
按指定日期返回一个星期名称. |
_DateDaysInMonth |
返回基于指定年的指定月的月中的天数 |
_DateDiff |
返回两个日期的不同, 使用指定类型表达. |
_DateIsLeapYear |
检查指定年份是不是闰年. |
_DateIsValid |
检查给定的日期是否是一个有效的日期(格式). |
_DateTimeFormat |
返回电脑的区域设置中的日期格式 |
_DateTimeSplit |
将包含日期和时间的字符串拆分为两个数组 |
_DateToDayOfWeek |
返回给定日期在其所在周内的星期序号 |
_DateToDayOfWeekISO |
返回一个指定日期的国际标准(ISO)星期(n)数. |
_DateToDayValue |
返回从BC 4713 年一月一日中午至今的天数,用于得到格里日期(日常说的阳历,西历). |
_DateToMonth |
返回指定月份的名称. |
_Date_Time_CompareFileTime |
比较两个文件时间 |
_Date_Time_DOSDateTimeToArray |
解码一个 DOS 日期/时间 为一个数组 |
_Date_Time_DOSDateTimeToFileTime |
转换一个 MS-DOS 日期和时间值到一个文件时间 |
_Date_Time_DOSDateTimeToStr |
解码一个 DOS 日期到一个字符串 |
_Date_Time_DOSDateToArray |
解码一个 DOS 日期到一个数组 |
_Date_Time_DOSDateToStr |
解码一个 DOS 日期到一个字符串 |
_Date_Time_DOSTimeToArray |
解码一个 DOS 时间到一个数组 |
_Date_Time_DOSTimeToStr |
解码一个 DOS 时间到字符串 |
_Date_Time_EncodeFileTime |
编码并返回一个 $tagFILETIME 数据结构 |
_Date_Time_EncodeSystemTime |
编码并返回一个 $tagSYSTEMTIME 数据结构 |
_Date_Time_FileTimeToArray |
解码一个文件时间到数组 |
_Date_Time_FileTimeToDOSDateTime |
转换 MS-DOS 日期与时间值到一个文件时间 |
_Date_Time_FileTimeToLocalFileTime |
转换一个基于全球协调时(UTC)的文件时间到本地文件时间 |
_Date_Time_FileTimeToStr |
解码一个文件时间到一个日期/时间字符串 |
_Date_Time_FileTimeToSystemTime |
转换一个文件时间到系统时间格式 |
_Date_Time_GetFileTime |
返回一个包含文件创建,访问,修改的日期和时间 |
_Date_Time_GetLocalTime |
返回当前的本地日期和时间 |
_Date_Time_GetSystemTime |
返回一个使用全球协调时(UTC)表示的当前系统时间 |
_Date_Time_GetSystemTimeAdjustment |
确定系统是否进行定期时间调整 |
_Date_Time_GetSystemTimeAsFileTime |
返回一个使用全球协调时(UTC)表示的当前系统时间 |
_Date_Time_GetSystemTimes |
返回系统时间信息 |
_Date_Time_GetTickCount |
返回从系统启动到当前时间经过的毫秒数 |
_Date_Time_GetTimeZoneInformation |
返回当前时区设置 |
_Date_Time_LocalFileTimeToFileTime |
转换一个本地文件时间到一个文件时间(基于UTC) |
_Date_Time_SetFileTime |
设置文件创建,访问,修改日期与时间 |
_Date_Time_SetLocalTime |
设置当前本地日期与时间 |
_Date_Time_SetSystemTime |
设置当前系统时间与日期, 使用 UTC 表达 |
_Date_Time_SetSystemTimeAdjustment |
启用或禁用系统时钟定期调整 |
_Date_Time_SetTimeZoneInformation |
设置当前时区设置 |
_Date_Time_SystemTimeToArray |
解码一个系统时间到一个数组 |
_Date_Time_SystemTimeToDateStr |
解码一个系统时间到一个日期字符串 |
_Date_Time_SystemTimeToDateTimeStr |
解码一个系统时间到一个日期/时间字符串 |
_Date_Time_SystemTimeToFileTime |
转换一个系统时间到文件时间格式 |
_Date_Time_SystemTimeToTimeStr |
解码一个系统时间到一个时间字符串 |
_Date_Time_SystemTimeToTzSpecificLocalTime |
UTC时间转换为指定时区的对应本地时间 |
_Date_Time_TzSpecificLocalTimeToSystemTime |
将本地时间转变为UTC时间 |
_DayValueToDate |
添加一个指定的天数到BC 4713 年1月1日中午,并返回一个格利日期(Gregorian date,日常说的阳历,西历). |
_DebugBugReportEnv |
输出一个包含错误信息字符串的提交报告. |
_DebugOut |
输出调试信息到 _DebugSetup() 设置的调试会话框 |
_DebugReport |
写调试会话 |
_DebugReportEx |
格式化写入调试会话框的信息 |
_DebugReportVar |
将变量的结果写入调试会话 |
_DebugSetup |
使用指定的报告设置调试会话 |
_Degree |
将弧度转换为角度. |
_EventLog__Backup |
将事件日志保存到一个备份文件 |
_EventLog__Clear |
清空事件日志 |
_EventLog__Close |
关闭一个事件日志读取句柄. |
_EventLog__Count |
获取事件日志中记录的数量 |
_EventLog__DeregisterSource |
关闭一个事件日志写入句柄. |
_EventLog__Full |
检查事件日志是否已满 |
_EventLog__Notify |
使应用程序接受一个事件通知 |
_EventLog__Oldest |
获取事件日志中最旧记录的绝对记录数 |
_EventLog__Open |
打开日志的句柄 |
_EventLog__OpenBackup |
打开一个日志文件备份的句柄 |
_EventLog__Read |
从事件日志读取一个值 |
_EventLog__RegisterSource |
获取已注册的指定事件日志的句柄 |
_EventLog__Report |
事件写入指定事件日志的末端 |
_ExcelBookAttach |
连接到首个存在的使基于选择模式与搜索字符串相匹配的Microsoft Excel实例 |
_ExcelBookClose |
关闭活动工作表并移除指定的 Excel 对象. |
_ExcelBookNew |
创建一个新的工作表并返回一个对象标识(ID). |
_ExcelBookOpen |
打开一个存在的工作表并返回它的对象标识. |
_ExcelBookSave |
保存指定Excel对象的活动工作表. |
_ExcelBookSaveAs |
使用新文件名或格式保存指定Excel对象的活动工作簿 |
_ExcelColumnDelete |
删除活动工作表中一定数量的列 |
_ExcelColumnInsert |
向活动工作表中插入列 |
_ExcelFontSetProperties |
设置Excel对象一个范围内的粗体, 斜体, 及下划线字体属性 |
_ExcelHorizontalAlignSet |
设置单元格水平对齐方式. |
_ExcelHyperlinkInsert |
活动页面中插入一个超链接. |
_ExcelNumberFormat |
在指定 R1C1 范围应用特定格式的单元格. |
_ExcelReadArray |
使用活动工作表的 1 行或 1 列数据创建数组. |
_ExcelReadCell |
从一个指定Excel对象的活动工作表读取(单元格)信息. |
_ExcelReadSheetToArray |
用活动工作表的行/列创建二维数组. |
_ExcelRowDelete |
删除活动工作表中的一行或多行. |
_ExcelRowInsert |
将一定数量的行插入工作表 |
_ExcelSheetActivate |
使用表名称或编号激活指定工作表. |
_ExcelSheetAddNew |
添加一个新的工作表到工作区 - 名称可选. |
_ExcelSheetDelete |
使用表名称或编号删除指定表. |
_ExcelSheetList |
返回工作簿中所有工作表名称列表的数组. |
_ExcelSheetMove |
移动工作表 |
_ExcelSheetNameGet |
返回活动表的名称 |
_ExcelSheetNameSet |
设置活动工作表名称. |
_ExcelWriteArray |
将数组写入到指定Excel对象活动表上的行或列 |
_ExcelWriteCell |
将信息写入指定 Excel 对象的活动工作表单元格. |
_ExcelWriteFormula |
将公式写入指定 Excel 对象活动工作表单元格中. |
_ExcelWriteSheetFromArray |
写入一个二维数组到活动工作表 |
_FileCountLines |
返回指定文件的行数. |
_FileCreate |
创建或者清零指定的文件. |
_FileListToArray |
列出指定路径下的文件和/或文件夹 (类似使用 Dir /B命令) |
_FilePrint |
打印一个纯文本文件. |
_FileReadToArray |
读取一个指定文件到一个数组. |
_FileWriteFromArray |
将数组写入到指定的文件 |
_FileWriteLog |
写入一个当前日期,时间和一个指定文本到一个日志文件. |
_FileWriteToLine |
写入文本到一个文件的指定行. |
_FTP_Close |
关闭 _FTP_Open 函数打开的会话. |
_FTP_Command |
发送一个命令到 FTP 服务器. |
_FTP_Connect |
连接到一个 FTP 服务器. |
_FTP_DecodeInternetStatus |
解码一个接收(received) Internet 状态. |
_FTP_DirCreate |
在 FTP 服务器上建立一个目录. |
_FTP_DirDelete |
删除一个 FTP 服务器上的目录. |
_FTP_DirGetCurrent |
得到FTP服务器当前目录. |
_FTP_DirPutContents |
如果选定 Recursivley, 将文件夹放入 FTP 服务器. |
_FTP_DirSetCurrent |
设置 FTP 服务器上的当前目录. |
_FTP_FileClose |
关闭由 _FTP_FileOpen 返回的句柄. |
_FTP_FileDelete |
从 FTP 服务器删除一个文件. |
_FTP_FileGet |
从 FTP 服务器上得到一个文件. |
_FTP_FileGetSize |
得到 FTP 服务器上一个文件的文件大小. |
_FTP_FileOpen |
打开 FTP 服务器上的远程文件供读/写. |
_FTP_FilePut |
在 FTP 服务器上放置(上传)一个文件. |
_FTP_FileRead |
使用 _FTP_FileOpen() 返回的文件句柄读取数据 |
_FTP_FileRename |
重命名一个 FTP 服务器上的文件. |
_FTP_FileTimeLoHiToStr |
转换文件时间低位和高位到一个字符串. |
_FTP_FindFileClose |
删除查找文件句柄. |
_FTP_FindFileFirst |
查找 FTP 服务器上第一个文件. |
_FTP_FindFileNext |
查找 FTP 服务器上的下一个文件. |
_FTP_GetLastResponseInfo |
线程调用这个函数检索最后一个错误描述或服务器的响应 |
_FTP_ListToArray |
获取当前远程目录的文件名, 目录或两项. |
_FTP_ListToArray2D |
获取当前远程目录文件名和文件大小. |
_FTP_ListToArrayEx |
获取当前远程目录的文件/目录的名称, 大小, 属性和时间. |
_FTP_Open |
打开一个 FTP 会话. |
_FTP_ProgressDownload |
以二进制模式下载文件,并显示(或通过调用用户自定义函数)进度窗口. |
_FTP_ProgressUpload |
以二进制模式上传文件,并显示(或通过调用用户自定义函数)进度窗口 |
_FTP_SetStatusCallback |
注册回调函数,WinInet 函数可以调用一项操作中的进度. |
_GDIPlus_ArrowCapCreate |
创建高度和宽度可调的箭头线帽 |
_GDIPlus_ArrowCapDispose |
释放可调节箭头线帽对象 |
_GDIPlus_ArrowCapGetFillState |
获取箭头帽填充状态 |
_GDIPlus_ArrowCapGetHeight |
获取箭头帽高度 |
_GDIPlus_ArrowCapGetMiddleInset |
获取插入值 |
_GDIPlus_ArrowCapGetWidth |
获取箭头帽宽度 |
_GDIPlus_ArrowCapSetFillState |
设置箭头帽填充状态 |
_GDIPlus_ArrowCapSetHeight |
设置箭头帽高度 |
_GDIPlus_ArrowCapSetMiddleInset |
获取插入值 |
_GDIPlus_ArrowCapSetWidth |
设置箭头帽宽度 |
_GDIPlus_BitmapCloneArea |
创建指定坐标和格式的位图对象克隆 |
_GDIPlus_BitmapCreateFromFile |
从文件中创建位图对象 |
_GDIPlus_BitmapCreateFromGraphics |
在一个图形对象上创建基于宽度和高度的位图对象 |
_GDIPlus_BitmapCreateFromHBITMAP |
从位图句柄创建位图对象 |
_GDIPlus_BitmapCreateHBITMAPFromBitmap |
从位图对象创建位图句柄 |
_GDIPlus_BitmapDispose |
释放一个位图对象 |
_GDIPlus_BitmapLockBits |
为读/写操作锁定部分位图 |
_GDIPlus_BitmapUnlockBits |
解锁 _GDIPlus_BitmapLockBits 锁定的部分位图 |
_GDIPlus_BrushClone |
克隆画笔对象 |
_GDIPlus_BrushCreateSolid |
创建实心画笔对象 |
_GDIPlus_BrushDispose |
释放画笔对象 |
_GDIPlus_BrushGetSolidColor |
获取实心画笔对象颜色 |
_GDIPlus_BrushGetType |
获取画刷对象的类型 |
_GDIPlus_BrushSetSolidColor |
设置实心画笔对象颜色 |
_GDIPlus_CustomLineCapDispose |
释放一个自定义线 cap 对象 |
_GDIPlus_Decoders |
获取包含图像解码器信息的数组 |
_GDIPlus_DecodersGetCount |
获取图像解码器数量 |
_GDIPlus_DecodersGetSize |
获取 _GDIPlus_GetImageDecoders 返回结构总的大小 |
_GDIPlus_DrawImagePoints |
图像绘制到指定的位置. |
_GDIPlus_Encoders |
获取编码器图像信息的数组 |
_GDIPlus_EncodersGetCLSID |
返回指定图像文件类型的编码器 CLSID |
_GDIPlus_EncodersGetCount |
获取图像编码器数量 |
_GDIPlus_EncodersGetParamList |
获取图像编码器参数列表 |
_GDIPlus_EncodersGetParamListSize |
获取图像编码器参数列表的大小 |
_GDIPlus_EncodersGetSize |
获取 _GDIPlus_GetImageEncoders 返回的结构总大小 |
_GDIPlus_FontCreate |
创建一个字体对象 |
_GDIPlus_FontDispose |
释放一个字体对象 |
_GDIPlus_FontFamilyCreate |
创建字体族对象 |
_GDIPlus_FontFamilyDispose |
释放一个字体家族(Font Family)对象 |
_GDIPlus_GraphicsClear |
清除图形对象指定颜色 |
_GDIPlus_GraphicsCreateFromHDC |
从一个设备上下文(DC)创建图形对象 |
_GDIPlus_GraphicsCreateFromHWND |
从窗口句柄创建图形对象 |
_GDIPlus_GraphicsDispose |
释放一个图形对象 |
_GDIPlus_GraphicsDrawArc |
绘制弧线 |
_GDIPlus_GraphicsDrawBezier |
绘制贝塞尔样条线 |
_GDIPlus_GraphicsDrawClosedCurve |
绘制封闭曲线 |
_GDIPlus_GraphicsDrawCurve |
绘制曲线 |
_GDIPlus_GraphicsDrawEllipse |
绘制椭圆 |
_GDIPlus_GraphicsDrawImage |
绘制图像对象 |
_GDIPlus_GraphicsDrawImageRect |
图像绘制到指定的位置 |
_GDIPlus_GraphicsDrawImageRectRect |
绘制图像对象 |
_GDIPlus_GraphicsDrawLine |
绘制直线 |
_GDIPlus_GraphicsDrawPie |
绘制饼图 |
_GDIPlus_GraphicsDrawPolygon |
绘制多边形 |
_GDIPlus_GraphicsDrawRect |
绘制一个矩形区域 |
_GDIPlus_GraphicsDrawString |
绘制字符串 |
_GDIPlus_GraphicsDrawStringEx |
使用数据结构绘制字符串 |
_GDIPlus_GraphicsFillClosedCurve |
填充封闭曲线 |
_GDIPlus_GraphicsFillEllipse |
填充椭圆 |
_GDIPlus_GraphicsFillPie |
填充饼图 |
_GDIPlus_GraphicsFillPolygon |
填充多边形 |
_GDIPlus_GraphicsFillRect |
填充矩形 |
_GDIPlus_GraphicsGetDC |
获取图形的设备环境句柄 |
_GDIPlus_GraphicsGetSmoothingMode |
获取图形对象的渲染质量 |
_GDIPlus_GraphicsMeasureString |
测量字符串尺寸 |
_GDIPlus_GraphicsReleaseDC |
释放图形对象的设备环境 |
_GDIPlus_GraphicsSetSmoothingMode |
设置图形对象绘制质量 |
_GDIPlus_GraphicsSetTransform |
设置图像对象的世界坐标空间 |
_GDIPlus_ImageDispose |
释放一个图像对象 |
_GDIPlus_ImageGetFlags |
枚举图像的像素数据属性 |
_GDIPlus_ImageGetGraphicsContext |
获取图像的图形场景 |
_GDIPlus_ImageGetHeight |
获取图像高度 |
_GDIPlus_ImageGetHorizontalResolution |
获取以图像DPI(每英寸像素)表示的水平分辨率 |
_GDIPlus_ImageGetPixelFormat |
获取图像的像素格式: 每像素位, Alpha 通道, RGB, 灰度, 索引等. |
_GDIPlus_ImageGetRawFormat |
返回文件格式的 GUID 和图像的图像格式名称 |
_GDIPlus_ImageGetType |
返回图像类型(位图或图元文件) |
_GDIPlus_ImageGetVerticalResolution |
获取以图像DPI(每英寸像素)表示的垂直分辨率 |
_GDIPlus_ImageGetWidth |
获取图像宽度 |
_GDIPlus_ImageLoadFromFile |
创建基于文件的图像对象 |
_GDIPlus_ImageSaveToFile |
将图像保存到文件 |
_GDIPlus_ImageSaveToFileEx |
将图像保存到文件 |
_GDIPlus_MatrixCreate |
创建并初始化矩阵对象 |
_GDIPlus_MatrixDispose |
释放矩阵对象 |
_GDIPlus_MatrixRotate |
旋转矩阵 |
_GDIPlus_MatrixScale |
缩放矩阵 |
_GDIPlus_MatrixTranslate |
移动矩阵 |
_GDIPlus_ParamAdd |
添加值到编码器参数列表 |
_GDIPlus_ParamInit |
初始化编码器的参数列表 |
_GDIPlus_PenCreate |
创建画笔对象 |
_GDIPlus_PenDispose |
释放一个画笔对象 |
_GDIPlus_PenGetAlignment |
获取画笔对齐方式 |
_GDIPlus_PenGetColor |
得到画笔颜色 |
_GDIPlus_PenGetCustomEndCap |
获取自定义画笔终端线帽 |
_GDIPlus_PenGetDashCap |
获取短划线线帽样式 |
_GDIPlus_PenGetDashStyle |
获取短划线样式 |
_GDIPlus_PenGetEndCap |
获取画笔终点线帽 |
_GDIPlus_PenGetWidth |
获取画笔宽度 |
_GDIPlus_PenSetAlignment |
设置画笔对齐方式 |
_GDIPlus_PenSetColor |
设置画笔颜色 |
_GDIPlus_PenSetCustomEndCap |
自定义画笔终点线帽 |
_GDIPlus_PenSetDashCap |
设置短划线线帽样式 |
_GDIPlus_PenSetDashStyle |
设置画笔短划线样式 |
_GDIPlus_PenSetEndCap |
设置画笔终点线帽 |
_GDIPlus_PenSetWidth |
设置画笔宽度 |
_GDIPlus_RectFCreate |
创建 $tagGDIPRECTF 结构 |
_GDIPlus_Shutdown |
清理微软 Windows GDI+ 使用的资源 |
_GDIPlus_Startup |
初始化微软 Windows GDI+ |
_GDIPlus_StringFormatCreate |
创建字符串格式对象 |
_GDIPlus_StringFormatDispose |
释放字符串格式对象 |
_GDIPlus_StringFormatSetAlign |
设置字符串格式对象的文本对齐 |
_GetIP |
获取一个网络/计算机的公网IP地址. |
_GUICtrlAVI_Close |
关闭一个 AVI 剪辑 |
_GUICtrlAVI_Create |
创建一个 AVI 控件 |
_GUICtrlAVI_Destroy |
删除AVI控件 |
_GUICtrlAVI_IsPlaying |
检查一个AVI剪辑是否正在播放 |
_GUICtrlAVI_Open |
在动画控件中打开并播放AVI剪辑 |
_GUICtrlAVI_OpenEx |
打开AVI剪辑并在控件中显示第一帧 |
_GUICtrlAVI_Play |
在动画控件中播放AVI剪辑 |
_GUICtrlAVI_Seek |
引导控件播放剪辑中的特殊帧 |
_GUICtrlAVI_Show |
显示/隐藏AVI控件 |
_GUICtrlAVI_Stop |
停止播放一个 AVI 影片 |
_GUICtrlButton_Click |
模拟用户点击按钮 |
_GUICtrlButton_Create |
创建一个按钮控件 |
_GUICtrlButton_Destroy |
删除按钮控件 |
_GUICtrlButton_Enable |
应用或者禁用鼠标和键盘对指定按钮的输入 |
_GUICtrlButton_GetCheck |
得到单选按钮或者复选框选中状态 |
_GUICtrlButton_GetFocus |
赋予按钮一个键盘焦点 |
_GUICtrlButton_GetIdealSize |
获取按钮适配文本和图像的最佳尺寸 |
_GUICtrlButton_GetImage |
返回一个关联于按钮的图像(图标或者位图)句柄. |
_GUICtrlButton_GetImageList |
获取图像列表对按钮控件分配状态的数组 |
_GUICtrlButton_GetNote |
获取命令链接按钮关联的注释文字 |
_GUICtrlButton_GetNoteLength |
获取命令链接按钮提示文本的长度 |
_GUICtrlButton_GetSplitInfo |
获取分割(split)按钮控件的信息. |
_GUICtrlButton_GetState |
获取按钮或复选框的状态 |
_GUICtrlButton_GetText |
返回按钮上的文本 |
_GUICtrlButton_GetTextMargin |
获取按钮中文本的页边距 |
_GUICtrlButton_SetCheck |
设置单选按钮或复选框的选取状态 |
_GUICtrlButton_SetDontClick |
设置按钮的 $BST_DONTCLICK 状态标志 |
_GUICtrlButton_SetFocus |
设置键盘焦点到指定的按钮 |
_GUICtrlButton_SetImage |
设置单选按钮或复选框的选取状态 |
_GUICtrlButton_SetImageList |
分配一个图像列表到一个按钮控件 |
_GUICtrlButton_SetNote |
设置与命令按钮有关的提示文本 |
_GUICtrlButton_SetShield |
在指定按钮或链接上显示盾牌图标 |
_GUICtrlButton_SetSize |
设置按钮大小 |
_GUICtrlButton_SetSplitInfo |
获取分割按钮控件的信息 |
_GUICtrlButton_SetState |
设置按钮的加亮状态. 加亮状态表明按钮是否突出显示,就像鼠标停留在按钮上. |
_GUICtrlButton_SetStyle |
设置按钮的样式 |
_GUICtrlButton_SetText |
设置按钮文本 |
_GUICtrlButton_SetTextMargin |
在按钮控件上设置一个空白用于绘制文本. |
_GUICtrlButton_Show |
显示/隐藏 按钮 |
_GUICtrlComboBoxEx_AddDir |
添加目录和文件的名称 |
_GUICtrlComboBoxEx_AddString |
添加字符串 |
_GUICtrlComboBoxEx_BeginUpdate |
启动控件更新直到调用 EndUpdate 函数 |
_GUICtrlComboBoxEx_Create |
创建扩展组合控件 |
_GUICtrlComboBoxEx_CreateSolidBitMap |
创建单色位图 |
_GUICtrlComboBoxEx_DeleteString |
移除组合控件(Ex)项目 |
_GUICtrlComboBoxEx_Destroy |
删除控件 |
_GUICtrlComboBoxEx_EndUpdate |
结束组合控件更新,关闭 BeginUpdate 函数 |
_GUICtrlComboBoxEx_FindStringExact |
搜索字符串(全匹配) |
_GUICtrlComboBoxEx_GetComboBoxInfo |
得到关于指定组合框(ComboBox)的信息 |
_GUICtrlComboBoxEx_GetComboControl |
获取扩展组合控件 ComboBoxEx 句柄 |
_GUICtrlComboBoxEx_GetCount |
获取项目的个数 |
_GUICtrlComboBoxEx_GetCurSel |
获取当前被选项的索引 |
_GUICtrlComboBoxEx_GetDroppedControlRect |
检索控件中列表框在展开状态时的屏幕坐标,返回数据数组. |
_GUICtrlComboBoxEx_GetDroppedControlRectEx |
检索控件中列表框在展开状态时的屏幕坐标,返回数据结构. |
_GUICtrlComboBoxEx_GetDroppedState |
获取组合框的列表框最小允许宽度 |
_GUICtrlComboBoxEx_GetDroppedWidth |
获取组合框的列表框最小允许宽度 |
_GUICtrlComboBoxEx_GetEditControl |
获取组合控件 ComboBoxEx 编辑框句柄 |
_GUICtrlComboBoxEx_GetEditSel |
获取组合框的编辑控件里当前选项开始和结束字符的位置 |
_GUICtrlComboBoxEx_GetEditText |
获取扩展组合框编辑控件里的文本 |
_GUICtrlComboBoxEx_GetExtendedStyle |
获取组合控件 ComboBoxEx 的扩展样式 |
_GUICtrlComboBoxEx_GetExtendedUI |
确定组合框使用的是默认用户界面还是扩展用户界面 |
_GUICtrlComboBoxEx_GetImageList |
获取分配给扩展组合控件的图像列表句柄 |
_GUICtrlComboBoxEx_GetItem |
获取一个项目的属性 |
_GUICtrlComboBoxEx_GetItemEx |
返回一些或者所有项目的属性 |
_GUICtrlComboBoxEx_GetItemHeight |
确定ComboBox中列表项或选择区的高度 |
_GUICtrlComboBoxEx_GetItemImage |
获取项目图标的索引 |
_GUICtrlComboBoxEx_GetItemIndent |
检索项目缩进的图像宽度数.一个缩进量等于一个图像宽度. |
_GUICtrlComboBoxEx_GetItemOverlayImage |
获取项目覆盖状态图像的索引 |
_GUICtrlComboBoxEx_GetItemParam |
返回一个项目的应用程序定义的特殊值. |
_GUICtrlComboBoxEx_GetItemSelectedImage |
检索项目选定状态的图像图标索引 |
_GUICtrlComboBoxEx_GetItemText |
获取组合框列表中的字符串 |
_GUICtrlComboBoxEx_GetItemTextLen |
获取组合框列表中一个字符串的字符长度 |
_GUICtrlComboBoxEx_GetList |
获取来自组合框列表部分的所有项 |
_GUICtrlComboBoxEx_GetListArray |
检索组合控件列表框全部项目,返回包含项目字符串的数组. |
_GUICtrlComboBoxEx_GetLocale |
获取当前地区 |
_GUICtrlComboBoxEx_GetLocaleCountry |
获取当前国家代码 |
_GUICtrlComboBoxEx_GetLocaleLang |
检索当前语言标识符 |
_GUICtrlComboBoxEx_GetLocalePrimLang |
从语言 ID 中提取主语言 ID |
_GUICtrlComboBoxEx_GetLocaleSubLang |
从语言 ID 提取子语言 ID |
_GUICtrlComboBoxEx_GetMinVisible |
获取组合框下拉列表中可见项目的最小数量 |
_GUICtrlComboBoxEx_GetTopIndex |
获取组合框的列表部分中第一个可见项从0开始的索引 |
_GUICtrlComboBoxEx_GetUnicode |
检查控件是否使用Unicode |
_GUICtrlComboBoxEx_InitStorage |
分配用于存储列表框项目的内存 |
_GUICtrlComboBoxEx_InsertString |
插入新项目 |
_GUICtrlComboBoxEx_LimitText |
限制用户键入组合框编辑控件的文本长度 |
_GUICtrlComboBoxEx_ReplaceEditSel |
替换编辑框中选定文本 |
_GUICtrlComboBoxEx_ResetContent |
移除所有项目. |
_GUICtrlComboBoxEx_SetCurSel |
从组合框列表中选择一个字符串 |
_GUICtrlComboBoxEx_SetDroppedWidth |
设置组合框的列表框允许的最大像素宽度 |
_GUICtrlComboBoxEx_SetEditSel |
选择组合框编辑控件中的字符 |
_GUICtrlComboBoxEx_SetEditText |
设置组合框控件中的编辑(edit)控件的文本 |
_GUICtrlComboBoxEx_SetExtendedStyle |
设置组合控件(Ex)的扩展样式 |
_GUICtrlComboBoxEx_SetExtendedUI |
选择默认用户界面或扩展用户界面 |
_GUICtrlComboBoxEx_SetImageList |
设置组合控件(Ex)图像列表 |
_GUICtrlComboBoxEx_SetItem |
设置部分或全部项目的属性(使用参数) |
_GUICtrlComboBoxEx_SetItemEx |
设置一个项目的部分或全部属性 |
_GUICtrlComboBoxEx_SetItemHeight |
设置组合框列表项目或选择区的高 |
_GUICtrlComboBoxEx_SetItemImage |
设置项目图标在图像列表中的索引. |
_GUICtrlComboBoxEx_SetItemIndent |
设置项目缩进图像宽度数 |
_GUICtrlComboBoxEx_SetItemOverlayImage |
设置项目覆盖图标在图像列表中的索引 |
_GUICtrlComboBoxEx_SetItemParam |
设置项目的具体值 |
_GUICtrlComboBoxEx_SetItemSelectedImage |
设置项目选中状态图标在图像列表中的索引 |
_GUICtrlComboBoxEx_SetMinVisible |
设置组合框下拉列表项目的最小可见数量 |
_GUICtrlComboBoxEx_SetTopIndex |
确定组合框的下拉列表中的一个特殊项是可见的 |
_GUICtrlComboBoxEx_SetUnicode |
设置控件是否使用Unicode |
_GUICtrlComboBoxEx_ShowDropDown |
显示或隐藏组合框的列表框 |
_GUICtrlComboBox_AddDir |
添加目录与文件的名称 |
_GUICtrlComboBox_AddString |
添加一个字符串 |
_GUICtrlComboBox_AutoComplete |
自动完成一个组合框编辑控件 |
_GUICtrlComboBox_BeginUpdate |
启动控件更新直到调用 EndUpdate 函数 |
_GUICtrlComboBox_Create |
创建一个组合对话框控件 |
_GUICtrlComboBox_DeleteString |
删除一个字符串 |
_GUICtrlComboBox_Destroy |
删除控件 |
_GUICtrlComboBox_EndUpdate |
关闭 BeginUpdate 函数并重绘屏幕 |
_GUICtrlComboBox_FindString |
搜索字符串(部分匹配) |
_GUICtrlComboBox_FindStringExact |
搜索字符串(完全匹配) |
_GUICtrlComboBox_GetComboBoxInfo |
获取关于指定组合框的信息 |
_GUICtrlComboBox_GetCount |
获取项目的个数 |
_GUICtrlComboBox_GetCueBanner |
获取显示在组合框编辑控件的提示标志文字 |
_GUICtrlComboBox_GetCurSel |
获取当前被选项的索引 |
_GUICtrlComboBox_GetDroppedControlRect |
获取组合框在打开下拉菜单状态时的屏幕坐标 |
_GUICtrlComboBox_GetDroppedControlRectEx |
获取组合框在打开下拉菜单状态时的屏幕坐标 |
_GUICtrlComboBox_GetDroppedState |
确定组合框的列表箱是否打开 |
_GUICtrlComboBox_GetDroppedWidth |
获取组合框的列表框最小允许宽度 |
_GUICtrlComboBox_GetEditSel |
获取组合框的编辑控件里当前选项开始和结束字符的位置 |
_GUICtrlComboBox_GetEditText |
获取组合框编辑控件里的文本 |
_GUICtrlComboBox_GetExtendedUI |
确定组合框使用的是默认用户界面还是扩展用户界面 |
_GUICtrlComboBox_GetHorizontalExtent |
获取组合框的列表框可以水平滚动的像素宽度 |
_GUICtrlComboBox_GetItemHeight |
获取组合框中项目或选择区段的高度 |
_GUICtrlComboBox_GetLBText |
获取来自组合框列表的字符串 |
_GUICtrlComboBox_GetLBTextLen |
获取组合框的列表控件内一个字符串的长度, 用字符计算 |
_GUICtrlComboBox_GetList |
获取来自组合框列表部分的所有项 |
_GUICtrlComboBox_GetListArray |
获取来自组合框列表部分的所有项 |
_GUICtrlComboBox_GetLocale |
获取当前地区 |
_GUICtrlComboBox_GetLocaleCountry |
返回当前国家代码. |
_GUICtrlComboBox_GetLocaleLang |
获取当前语言标识符 |
_GUICtrlComboBox_GetLocalePrimLang |
从语言 ID 中提取主语言 ID |
_GUICtrlComboBox_GetLocaleSubLang |
从语言 ID 提取子语言 ID |
_GUICtrlComboBox_GetMinVisible |
获取组合框下拉列表中可见项目的最小数量 |
_GUICtrlComboBox_GetTopIndex |
获取组合框的列表部分中第一个可见项从0开始的索引 |
_GUICtrlComboBox_InitStorage |
分配用于存储列表框项目的内存 |
_GUICtrlComboBox_InsertString |
插入字符串 |
_GUICtrlComboBox_LimitText |
限制组合控件编辑框文本输入长度 |
_GUICtrlComboBox_ReplaceEditSel |
替换编辑框中选定的文本 |
_GUICtrlComboBox_ResetContent |
移除组合控件编辑框,列表框全部项目 |
_GUICtrlComboBox_SelectString |
搜索组合框列表中以指定字符串开始的项目 |
_GUICtrlComboBox_SetCueBanner |
设置显示在组合框编辑控件中的提示标志 |
_GUICtrlComboBox_SetCurSel |
选择组合框列表中的一个字符串 |
_GUICtrlComboBox_SetDroppedWidth |
设置组合框的列表框允许的最大像素宽度 |
_GUICtrlComboBox_SetEditSel |
选择组合框编辑控件中的字符 |
_GUICtrlComboBox_SetEditText |
设置组合框编辑控件的文本 |
_GUICtrlComboBox_SetExtendedUI |
选择默认用户界面或扩展用户界面 |
_GUICtrlComboBox_SetHorizontalExtent |
设置列表箱可以水平滚动的像素宽度 |
_GUICtrlComboBox_SetItemHeight |
设置组合框中的列表项目和选择区的高度 |
_GUICtrlComboBox_SetMinVisible |
设置组合框下拉列表可见项目的最小数量 |
_GUICtrlComboBox_SetTopIndex |
确定组合框的列表箱中一个特殊项是可见的 |
_GUICtrlComboBox_ShowDropDown |
显示或隐藏组合列表框的下拉菜单 |
_GUICtrlDTP_Create |
创建日期/时间选择器(DTP)控件 |
_GUICtrlDTP_Destroy |
删除日期时间选取器控件 |
_GUICtrlDTP_GetMCColor |
获取指定部分的颜色 |
_GUICtrlDTP_GetMCFont |
返回月历控件字体句柄 |
_GUICtrlDTP_GetMonthCal |
返回子月历控件句柄 |
_GUICtrlDTP_GetRange |
检索当前系统允许的最低和最高时间值,返回相关数据的数组. |
_GUICtrlDTP_GetRangeEx |
检索当前系统允许的最低和最高时间值,返回相关值的数据结构. |
_GUICtrlDTP_GetSystemTime |
检索当前选定的日期/时间,返回相关值的数组. |
_GUICtrlDTP_GetSystemTimeEx |
检索当前选定的日期/时间,返回相关值的数据结构. |
_GUICtrlDTP_SetFormat |
设置日期/时间显示格式 |
_GUICtrlDTP_SetMCColor |
设置月(日)历给定部分的颜色 |
_GUICtrlDTP_SetMCFont |
设置月(日)历字体 |
_GUICtrlDTP_SetRange |
设置系统最小和最大允许时间,使用数据数组. |
_GUICtrlDTP_SetRangeEx |
设置系统最小和最大允许时间,使用数据结构. |
_GUICtrlDTP_SetSystemTime |
设置当前选定的日期和时间,使用数据数组. |
_GUICtrlDTP_SetSystemTimeEx |
设置当前选定的日期和时间,使用数据结构. |
_GUICtrlEdit_AppendText |
添加文本 |
_GUICtrlEdit_BeginUpdate |
控件开始更新直到调用EndUpdate函数 |
_GUICtrlEdit_CanUndo |
确定在编辑控件的撤销队列中是否还有操作 |
_GUICtrlEdit_CharFromPos |
获取客户区中距指定点最近的字符的信息 |
_GUICtrlEdit_Create |
创建一个编辑框控件 |
_GUICtrlEdit_Destroy |
删除编辑框控件 |
_GUICtrlEdit_EmptyUndoBuffer |
重置编辑控件撤消标志 |
_GUICtrlEdit_EndUpdate |
使由于_GUICtrlEdit_BeginUpdate函数关闭的屏幕可以重绘 |
_GUICtrlEdit_Find |
启动查找对话框 |
_GUICtrlEdit_FmtLines |
确定编辑控件是否包括软换行字符 |
_GUICtrlEdit_GetFirstVisibleLine |
获取一个多行编辑框最高可见行的索引(从 0 开始) |
_GUICtrlEdit_GetLimitText |
获得编辑框控件当前的文本限制 |
_GUICtrlEdit_GetLine |
获取编辑控件中的一行 |
_GUICtrlEdit_GetLineCount |
获取行数 |
_GUICtrlEdit_GetMargins |
获取控件左右边距 |
_GUICtrlEdit_GetModify |
获取编辑框控件修订标记的状态 |
_GUICtrlEdit_GetPasswordChar |
获取编辑控件显示当用户输入文本的密码字符 |
_GUICtrlEdit_GetRECT |
获取一个编辑框控件的格式化矩形 |
_GUICtrlEdit_GetRECTEx |
获取一个编辑框控件的格式化矩形 |
_GUICtrlEdit_GetSel |
获取当前选择的开始和结束的字符的位置 |
_GUICtrlEdit_GetText |
获取编辑框控件中的文本 |
_GUICtrlEdit_GetTextLen |
得到编辑(Edit)控件中所有文本的长度. |
_GUICtrlEdit_HideBalloonTip |
隐藏与编辑框控件有关的所有气泡提示 |
_GUICtrlEdit_InsertText |
插入文本 |
_GUICtrlEdit_LineFromChar |
获取包含指定字符索引的行的索引 |
_GUICtrlEdit_LineIndex |
获取指定行的第一个字符的字符索引 |
_GUICtrlEdit_LineLength |
获取行的长度,使用字符 |
_GUICtrlEdit_LineScroll |
垂直滚动文本 |
_GUICtrlEdit_PosFromChar |
获取指定字符在编辑框控件客户区中的坐标 |
_GUICtrlEdit_ReplaceSel |
替换当前的选择 |
_GUICtrlEdit_Scroll |
垂直滚动文本 |
_GUICtrlEdit_SetLimitText |
设置文本限制值 |
_GUICtrlEdit_SetMargins |
设置左、右边距的宽度 |
_GUICtrlEdit_SetModify |
设置或清除修改标志. |
_GUICtrlEdit_SetPasswordChar |
设置或清除编辑控件的密码字符 |
_GUICtrlEdit_SetReadOnly |
设置或删除只读样式 ($ES_READONLY) |
_GUICtrlEdit_SetRECT |
设置多行编辑控件的矩形格式,使用坐标值数据数组. |
_GUICtrlEdit_SetRECTEx |
设置多行编辑控件的矩形格式,使用坐标值数据结构. |
_GUICtrlEdit_SetRECTNP |
设置多行编辑控件的矩形格式,使用坐标值数据数组. |
_GUICtrlEdit_SetRectNPEx |
设置多行编辑控件的矩形格式,使用坐标值数据结构. |
_GUICtrlEdit_SetSel |
选择字符中的一个范围(选择一段字符串) |
_GUICtrlEdit_SetTabStops |
设置制表符大小 |
_GUICtrlEdit_SetText |
设置控件文本 |
_GUICtrlEdit_ShowBalloonTip |
显示编辑控件关联的气球提示 |
_GUICtrlEdit_Undo |
撤销编辑控件撤销队列中最后的操作 |
_GUICtrlHeader_AddItem |
添加标题项目 |
_GUICtrlHeader_ClearFilter |
清除筛选 |
_GUICtrlHeader_ClearFilterAll |
清除所有筛选 |
_GUICtrlHeader_Create |
创建标题控件 |
_GUICtrlHeader_CreateDragImage |
创建一个半透明的项目图像作为拖曳图像 |
_GUICtrlHeader_DeleteItem |
删除一个标题栏项目 |
_GUICtrlHeader_Destroy |
删除标题控件 |
_GUICtrlHeader_EditFilter |
启动编辑指定的过滤器 |
_GUICtrlHeader_GetBitmapMargin |
获取位图边空的宽度 |
_GUICtrlHeader_GetImageList |
获取图像列表的句柄 |
_GUICtrlHeader_GetItem |
获取项目信息 |
_GUICtrlHeader_GetItemAlign |
获取项目文本对齐方式 |
_GUICtrlHeader_GetItemBitmap |
获取项目位图句柄 |
_GUICtrlHeader_GetItemCount |
返回项目数量 |
_GUICtrlHeader_GetItemDisplay |
返回项目显示信息 |
_GUICtrlHeader_GetItemFlags |
返回项目标志信息 |
_GUICtrlHeader_GetItemFormat |
返回项目格式 |
_GUICtrlHeader_GetItemImage |
获取图像在列表中的索引 |
_GUICtrlHeader_GetItemOrder |
获取项目出现的次序 |
_GUICtrlHeader_GetItemParam |
获取项目参数值 |
_GUICtrlHeader_GetItemRect |
检索给定项目的边界矩形,返回矩形数据数组. |
_GUICtrlHeader_GetItemRectEx |
检索给定项目的边界矩形,返回矩形数据结构. |
_GUICtrlHeader_GetItemText |
返回一个项目文本 |
_GUICtrlHeader_GetItemWidth |
获取项目宽度 |
_GUICtrlHeader_GetOrderArray |
获取当前从左到右的项目顺序 |
_GUICtrlHeader_GetUnicodeFormat |
获取控件Unicode字符格式标记 |
_GUICtrlHeader_HitTest |
检查一个点以确定在指定点上是哪个项目 |
_GUICtrlHeader_InsertItem |
插入新的标题项目 |
_GUICtrlHeader_Layout |
返回控件正确大小与坐标 |
_GUICtrlHeader_OrderToIndex |
获取一个项目基于其顺序的索引值 |
_GUICtrlHeader_SetBitmapMargin |
指定项目中位图边距的象素宽度 |
_GUICtrlHeader_SetFilterChangeTimeout |
设置过滤器变动超时间隔 |
_GUICtrlHeader_SetHotDivider |
改变热分隔符的颜色 |
_GUICtrlHeader_SetImageList |
分配图像列表 |
_GUICtrlHeader_SetItem |
设置关于项目的信息 |
_GUICtrlHeader_SetItemAlign |
设置项目文本对齐方式 |
_GUICtrlHeader_SetItemBitmap |
设置项目的位图句柄 |
_GUICtrlHeader_SetItemDisplay |
返回项目显示信息 |
_GUICtrlHeader_SetItemFlags |
返回项目标志信息 |
_GUICtrlHeader_SetItemFormat |
设置项目格式 |
_GUICtrlHeader_SetItemImage |
设置图像列表内图像的索引 |
_GUICtrlHeader_SetItemOrder |
设置项目出现的顺序 |
_GUICtrlHeader_SetItemParam |
设置项目参数值 |
_GUICtrlHeader_SetItemText |
设置标题项目文本 |
_GUICtrlHeader_SetItemWidth |
设置项目的宽度 |
_GUICtrlHeader_SetOrderArray |
设置当前项目从左到右的顺序 |
_GUICtrlHeader_SetUnicodeFormat |
设置控件的 Unicode 字符格式标志 |
_GUICtrlIpAddress_ClearAddress |
清除IP地址控件内容. |
_GUICtrlIpAddress_Create |
创建一个GUI IP地址控件 |
_GUICtrlIpAddress_Destroy |
删除控件 |
_GUICtrlIpAddress_Get |
从IP地址控件返回一个IP地址 |
_GUICtrlIpAddress_GetArray |
检索控件内的 IP 地址,返回地址字段数据数组. |
_GUICtrlIpAddress_GetEx |
检索控件内的 IP 地址,返回地址数据结构. |
_GUICtrlIpAddress_IsBlank |
检测IP地址控件的所有段都不为空 |
_GUICtrlIpAddress_Set |
设置IP地址控件中的IP地址 |
_GUICtrlIpAddress_SetArray |
设置IP地址控件中的地址 |
_GUICtrlIpAddress_SetEx |
设置 IP 地址,使用地址数据结构. |
_GUICtrlIpAddress_SetFocus |
设置键盘焦点到IP地址控件中指定的字段. |
_GUICtrlIpAddress_SetFont |
设置IP地址控件字体 |
_GUICtrlIpAddress_SetRange |
设置 IP 地址指定字段的有效范围 |
_GUICtrlIpAddress_ShowHide |
显示/隐藏 IP 地址控件 |
_GUICtrlListBox_AddFile |
添加文件到列表控件 |
_GUICtrlListBox_AddString |
添加字符串 |
_GUICtrlListBox_BeginUpdate |
开始控件更新,直到 EndUpdate 函数被调用. |
_GUICtrlListBox_ClickItem |
点击一个项目 |
_GUICtrlListBox_Create |
创建 ListBox (列表框)控件 |
_GUICtrlListBox_DeleteString |
删除字符串 |
_GUICtrlListBox_Destroy |
删除控件 |
_GUICtrlListBox_Dir |
添加目录和文件 |
_GUICtrlListBox_EndUpdate |
关闭由 BeginUpdate 函数启用的屏幕重绘功能. |
_GUICtrlListBox_FindInText |
搜索包含指定文本的项目 |
_GUICtrlListBox_FindString |
查找字符串 |
_GUICtrlListBox_GetAnchorIndex |
检索锚(固定)项目的索引 |
_GUICtrlListBox_GetCaretIndex |
返回焦点项目的索引 |
_GUICtrlListBox_GetCount |
返回项目数量 |
_GUICtrlListBox_GetCurSel |
获取当前被选项的索引 |
_GUICtrlListBox_GetHorizontalExtent |
获取列表框的滚动宽度 |
_GUICtrlListBox_GetItemData |
获取应用程序定义的与项目关联的值 |
_GUICtrlListBox_GetItemHeight |
返回项目的高度. |
_GUICtrlListBox_GetItemRect |
获取绑定项目的矩形 |
_GUICtrlListBox_GetItemRectEx |
获取绑定项目的矩形 |
_GUICtrlListBox_GetListBoxInfo |
获取指定列表框中每列的项目个数 |
_GUICtrlListBox_GetLocale |
获取当前地区 |
_GUICtrlListBox_GetLocaleCountry |
返回当前国家代码 |
_GUICtrlListBox_GetLocaleLang |
返回当前语言标识符(ID) |
_GUICtrlListBox_GetLocalePrimLang |
从语言ID释放(解压缩)主语言ID. |
_GUICtrlListBox_GetLocaleSubLang |
从语言ID释放(解压缩)一个子语言ID |
_GUICtrlListBox_GetSel |
获取项目的被选状态 |
_GUICtrlListBox_GetSelCount |
返回已选择项目的总数 |
_GUICtrlListBox_GetSelItems |
填充选定项的数组缓冲区 |
_GUICtrlListBox_GetSelItemsText |
获取被选项目的文本 |
_GUICtrlListBox_GetText |
返回指定索引的项目(字符串) |
_GUICtrlListBox_GetTextLen |
得到列表框中字符串长度. |
_GUICtrlListBox_GetTopIndex |
返回列表中第一个可见项目的所在的索引 |
_GUICtrlListBox_InitStorage |
分配存储项目的内存 |
_GUICtrlListBox_InsertString |
在列表中插入字符串 |
_GUICtrlListBox_ItemFromPoint |
获取距指定点最近的0基索引项 |
_GUICtrlListBox_ReplaceString |
替换项目文本 |
_GUICtrlListBox_ResetContent |
从列表框中移除所有项目. |
_GUICtrlListBox_SelectString |
搜索项目文本以指定字符串开始的项目 |
_GUICtrlListBox_SelItemRange |
在一个多选择列表框中选择一或多个连续的项目 |
_GUICtrlListBox_SelItemRangeEx |
在一个多选择列表框中选择一或多个连续的项目,兼有删除选中项功能. |
_GUICtrlListBox_SetAnchorIndex |
设置锚项目, 多项选择从该项目开始. |
_GUICtrlListBox_SetCaretIndex |
设置多选择列表框指定索引项目的焦点矩形 |
_GUICtrlListBox_SetColumnWidth |
设置全部列的像素宽度 |
_GUICtrlListBox_SetCurSel |
选择字符串,如有必要,则滚动到控件可见区. |
_GUICtrlListBox_SetHorizontalExtent |
设置列表框水平滚动的像素宽度 |
_GUICtrlListBox_SetItemData |
设置指定项目的关联值 |
_GUICtrlListBox_SetItemHeight |
设置项目的像素高度 |
_GUICtrlListBox_SetLocale |
设置当前区域信息 |
_GUICtrlListBox_SetSel |
选择多选择列表框中的字符串 |
_GUICtrlListBox_SetTabStops |
设置制表符停止位置 |
_GUICtrlListBox_SetTopIndex |
确保特定项目在列表框可见视图中. |
_GUICtrlListBox_Sort |
重新排序列表框.控件需具有 $LBS_SORT 样式. |
_GUICtrlListBox_SwapString |
互换两个指定索引的项目的文本 |
_GUICtrlListBox_UpdateHScroll |
根据最长的字符串更新水平滚动条. |
_GUICtrlListView_AddArray |
从数组向控件添加项目 |
_GUICtrlListView_AddColumn |
在控件内添加新列 |
_GUICtrlListView_AddItem |
添加项目到列表的末尾 |
_GUICtrlListView_AddSubItem |
向控件添加子项目 |
_GUICtrlListView_ApproximateViewHeight |
计算显示给定数量项目所需的近似高度 |
_GUICtrlListView_ApproximateViewRect |
计算显示给定数量项目所需的近似大小 |
_GUICtrlListView_ApproximateViewWidth |
计算用以显示给定数量项目所需的近似宽度 |
_GUICtrlListView_Arrange |
排列视图项目图标 |
_GUICtrlListView_BeginUpdate |
开始控件更新,直到 EndUpdate 函数被调用. |
_GUICtrlListView_CancelEditLabel |
取消项目的文本编辑操作 |
_GUICtrlListView_ClickItem |
点击一个项目 |
_GUICtrlListView_CopyItems |
在两个列表视图控件间复制项目 |
_GUICtrlListView_Create |
创建一个列表视图(ListView)控件 |
_GUICtrlListView_CreateDragImage |
为指定的项目创建一个拖动图像列表 |
_GUICtrlListView_CreateSolidBitMap |
创建单色位图 |
_GUICtrlListView_DeleteAllItems |
从 List-view 控件中移除所有项目 |
_GUICtrlListView_DeleteColumn |
从List-View控件中移除某一列. |
_GUICtrlListView_DeleteItem |
删除项目 |
_GUICtrlListView_DeleteItemsSelected |
删除所选项目 |
_GUICtrlListView_Destroy |
删除 ListView 控件 |
_GUICtrlListView_DrawDragImage |
绘制拖动图像 |
_GUICtrlListView_EditLabel |
编辑指定项的文本 |
_GUICtrlListView_EnableGroupView |
启用或禁用控件项目分组 |
_GUICtrlListView_EndUpdate |
结束控件更新,并关闭 BeginUpdate 函数 |
_GUICtrlListView_EnsureVisible |
确保列表视图项目全部或部分可见 |
_GUICtrlListView_FindInText |
搜索包含指定文本的项目 |
_GUICtrlListView_FindItem |
搜索指定特点的项目 |
_GUICtrlListView_FindNearest |
查找最接近指定位置的项目 |
_GUICtrlListView_FindParam |
搜索指定参数值的项目 |
_GUICtrlListView_FindText |
搜索指定文本的项目 |
_GUICtrlListView_GetBkColor |
检索列表视图控件的背景颜色 |
_GUICtrlListView_GetBkImage |
检索控件背景图像 |
_GUICtrlListView_GetCallbackMask |
检索控件的回叫掩码 |
_GUICtrlListView_GetColumn |
检索列的属性 |
_GUICtrlListView_GetColumnCount |
返回列数 |
_GUICtrlListView_GetColumnOrder |
检索当前列的左到右顺序,返回分隔的序号字符串. |
_GUICtrlListView_GetColumnOrderArray |
检索当前列的左到右顺序,返回数据数组. |
_GUICtrlListView_GetColumnWidth |
检索报表视图或列表视图的列宽 |
_GUICtrlListView_GetCounterPage |
计算在可视区域中,垂直显示的项目数量. |
_GUICtrlListView_GetEditControl |
检索编辑项目文本的编辑控件句柄. |
_GUICtrlListView_GetExtendedListViewStyle |
检索当前使用的扩展样式 |
_GUICtrlListView_GetFocusedGroup |
获取具有焦点的组 |
_GUICtrlListView_GetGroupCount |
获取分组数量 |
_GUICtrlListView_GetGroupInfo |
检索组信息,使用组 ID. |
_GUICtrlListView_GetGroupInfoByIndex |
检索组信息,使用组索引. |
_GUICtrlListView_GetGroupRect |
获取指定组的矩形 |
_GUICtrlListView_GetGroupViewEnabled |
检查是否启用组视图 |
_GUICtrlListView_GetHeader |
返回标题(header)控件句柄. |
_GUICtrlListView_GetHotCursor |
检索热跟踪项目时的鼠标指针 HCURSOR 值 |
_GUICtrlListView_GetHotItem |
检索热项目的索引 |
_GUICtrlListView_GetHoverTime |
检索项目选中时,鼠标悬停的时间量. |
_GUICtrlListView_GetImageList |
检索绘制 ListView 项目的图像列表句柄 |
_GUICtrlListView_GetISearchString |
检索控件的增量搜索字符串 |
_GUICtrlListView_GetItem |
Retrieves an item's attributes |
_GUICtrlListView_GetItemChecked |
返回列表视图中项目选择状态 |
_GUICtrlListView_GetItemCount |
检索列表视图的项目数量 |
_GUICtrlListView_GetItemCut |
确定项目是否有剪切/粘贴操作标志 |
_GUICtrlListView_GetItemDropHilited |
确定项目是否高亮显示为拖放目标 |
_GUICtrlListView_GetItemEx |
检索项目的部分或全部属性 |
_GUICtrlListView_GetItemFocused |
确定项目是否高亮显示为拖放目标 |
_GUICtrlListView_GetItemGroupID |
获取项目组 ID |
_GUICtrlListView_GetItemImage |
检索项目的图标索引 |
_GUICtrlListView_GetItemIndent |
检索项目缩进的图像宽度数 |
_GUICtrlListView_GetItemParam |
检索项目特定应用值 |
_GUICtrlListView_GetItemPosition |
检索项目的位置 |
_GUICtrlListView_GetItemPositionX |
检索项目的 X 位置 |
_GUICtrlListView_GetItemPositionY |
检索项目的 Y 位置 |
_GUICtrlListView_GetItemRect |
检索项目的全部或部分矩形,返回数据数组. |
_GUICtrlListView_GetItemRectEx |
检索项目的全部或部分矩形,返回数据结构. |
_GUICtrlListView_GetItemSelected |
确定项目是否被选中 |
_GUICtrlListView_GetItemSpacing |
确定控件中项目的间距 |
_GUICtrlListView_GetItemSpacingX |
确定项目之间的水平间距. |
_GUICtrlListView_GetItemSpacingY |
确定项目之间的垂直间距 |
_GUICtrlListView_GetItemState |
返回 ListView 项目状态 |
_GUICtrlListView_GetItemStateImage |
获取图像的显示状态 |
_GUICtrlListView_GetItemText |
取得一个项目或者子项目的文本 |
_GUICtrlListView_GetItemTextArray |
添加所有列表视图控件项目的文本到一个数组 |
_GUICtrlListView_GetItemTextString |
检索指定项目及其子项的全部文本,返回分隔的字符串.(译注:依据示例脚本翻译) |
_GUICtrlListView_GetNextItem |
搜索指定属性的项目 |
_GUICtrlListView_GetNumberOfWorkAreas |
检索控件工作区的数量 |
_GUICtrlListView_GetOrigin |
检索控件当前视图的起点 |
_GUICtrlListView_GetOriginX |
检索控件当前视图水平源点 |
_GUICtrlListView_GetOriginY |
检索控件当前视图水平源点 |
_GUICtrlListView_GetOutlineColor |
检索控件的边框颜色 |
_GUICtrlListView_GetSelectedColumn |
检索选定列的索引 |
_GUICtrlListView_GetSelectedCount |
检测选择的项目的数量 |
_GUICtrlListView_GetSelectedIndices |
检索选定项目的索引 |
_GUICtrlListView_GetSelectionMark |
检索控件选择标记 |
_GUICtrlListView_GetStringWidth |
确定指定字符串的宽度 |
_GUICtrlListView_GetSubItemRect |
检索项目的子项边界矩形 |
_GUICtrlListView_GetTextBkColor |
检索控件的文本背景颜色 |
_GUICtrlListView_GetTextColor |
返回控件的文本颜色 |
_GUICtrlListView_GetToolTips |
检索工具提示控件句柄 |
_GUICtrlListView_GetTopIndex |
检索列表或报表视图顶部可见项目的索引. |
_GUICtrlListView_GetUnicodeFormat |
检索 UNICODE 字符格式标志 |
_GUICtrlListView_GetView |
检索控件的当前视图 |
_GUICtrlListView_GetViewDetails |
确定控件是否为报表视图 |
_GUICtrlListView_GetViewLarge |
确定控件是否为大图标视图 |
_GUICtrlListView_GetViewList |
确定控件是否为列表视图 |
_GUICtrlListView_GetViewRect |
检索控件全部项目的边界矩形 |
_GUICtrlListView_GetViewSmall |
确定控件是否为小图标模式 |
_GUICtrlListView_GetViewTile |
确定控件是否为平铺显示视图 |
_GUICtrlListView_HideColumn |
隐藏列. "设置列宽为0” |
_GUICtrlListView_HitTest |
确定指定位置的项目 |
_GUICtrlListView_InsertColumn |
插入列 |
_GUICtrlListView_InsertGroup |
插入组 |
_GUICtrlListView_InsertItem |
插入项目 |
_GUICtrlListView_JustifyColumn |
设置控件列对齐 |
_GUICtrlListView_MapIDToIndex |
映射项目 ID 到索引 |
_GUICtrlListView_MapIndexToID |
映射项目索引到 ID |
_GUICtrlListView_RedrawItems |
强制刷新控件范围内的项目 |
_GUICtrlListView_RegisterSortCallBack |
注册简单排序回调函数 |
_GUICtrlListView_RemoveAllGroups |
移除全部组 |
_GUICtrlListView_RemoveGroup |
移除组 |
_GUICtrlListView_Scroll |
滚动列表视图的内容 |
_GUICtrlListView_SetBkColor |
设置控件的背景颜色 |
_GUICtrlListView_SetBkImage |
设置控件背景图像 |
_GUICtrlListView_SetCallBackMask |
更改控件的回调掩码 |
_GUICtrlListView_SetColumn |
设置列的属性 |
_GUICtrlListView_SetColumnOrder |
设置列的左到右顺序,使用分隔字符. |
_GUICtrlListView_SetColumnOrderArray |
设置列的左到右顺序,使用数组. |
_GUICtrlListView_SetColumnWidth |
更改列宽 |
_GUICtrlListView_SetExtendedListViewStyle |
设置扩展样式 |
_GUICtrlListView_SetGroupInfo |
设置组信息 |
_GUICtrlListView_SetHotItem |
设置热项目 |
_GUICtrlListView_SetHoverTime |
设置项目选中前,鼠标光标悬停该项目的时间 |
_GUICtrlListView_SetIconSpacing |
设置大图标视图的图标间距 |
_GUICtrlListView_SetImageList |
分配图像列表到控件 |
_GUICtrlListView_SetItem |
设置项目的部分或全部属性,使用参数. |
_GUICtrlListView_SetItemChecked |
设置选中状态 |
_GUICtrlListView_SetItemCount |
为列表视图控件的指定数量项目分配内存 |
_GUICtrlListView_SetItemCut |
设置是否将项目标记为剪切/粘贴操作 |
_GUICtrlListView_SetItemDropHilited |
设置是否将项目高亮显示为拖放目标 |
_GUICtrlListView_SetItemEx |
设置项目的部分或全部属性,使用数据结构. |
_GUICtrlListView_SetItemFocused |
设置项目是否具有焦点 |
_GUICtrlListView_SetItemGroupID |
设置项目组 ID |
_GUICtrlListView_SetItemImage |
设置一个项目图标的索引于控件图像列表. |
_GUICtrlListView_SetItemIndent |
设置项目缩进的图像宽度数量 |
_GUICtrlListView_SetItemParam |
设置项目的具体值 |
_GUICtrlListView_SetItemPosition |
移动项目到控件指定位置 |
_GUICtrlListView_SetItemPosition32 |
移动项目到控件指定位置 |
_GUICtrlListView_SetItemSelected |
设置项目是否被选中 |
_GUICtrlListView_SetItemState |
更改控件项目状态 |
_GUICtrlListView_SetItemStateImage |
设置状态图像 |
_GUICtrlListView_SetItemText |
更改项目或子项文本 |
_GUICtrlListView_SetOutlineColor |
设置边框颜色 |
_GUICtrlListView_SetSelectedColumn |
设置选定列的索引 |
_GUICtrlListView_SetSelectionMark |
设置选择标志 |
_GUICtrlListView_SetTextBkColor |
设置控件文本的背景颜色 |
_GUICtrlListView_SetTextColor |
设置控件中文本的颜色 |
_GUICtrlListView_SetToolTips |
设置工具提示控件,该控件将用于显示工具提示 |
_GUICtrlListView_SetUnicodeFormat |
设置控件的 UNICODE 字符格式标志 |
_GUICtrlListView_SetView |
设置控件的视图 |
_GUICtrlListView_SetWorkAreas |
创建控件工作区 |
_GUICtrlListView_SimpleSort |
排序列表视图控件(有限) |
_GUICtrlListView_SortItems |
启动回叫排序,并设置标题中的箭头 |
_GUICtrlListView_SubItemHitTest |
确定哪些项目或子项目在控件的给定位置 |
_GUICtrlListView_UnRegisterSortCallBack |
反注册排序回调函数 |
_GUICtrlMenu_AddMenuItem |
添加新菜单项到菜单末尾 |
_GUICtrlMenu_AppendMenu |
追加一个新项目到指定菜单栏,下拉菜单,子菜单或快捷菜单的末尾, |
_GUICtrlMenu_CheckMenuItem |
设置菜单项复选标记 (√) 的选中或清除选中状态 |
_GUICtrlMenu_CheckRadioItem |
选中指定菜单项,并使其成为单选项目 |
_GUICtrlMenu_CreateMenu |
创建菜单 |
_GUICtrlMenu_CreatePopup |
创建下拉菜单, 子菜单或快捷菜单 |
_GUICtrlMenu_DeleteMenu |
从指定菜单删除一个项目 |
_GUICtrlMenu_DestroyMenu |
销毁指定菜单,并释放菜单占用的内存 |
_GUICtrlMenu_DrawMenuBar |
刷新指定窗口的菜单栏 |
_GUICtrlMenu_EnableMenuItem |
启用,禁用或灰色指定的菜单项 |
_GUICtrlMenu_FindItem |
检索基于文本的菜单项 |
_GUICtrlMenu_FindParent |
返回菜单属于哪个窗口 |
_GUICtrlMenu_GetItemBmp |
检索项目显示的位图 |
_GUICtrlMenu_GetItemBmpChecked |
检索显示项目选中状态的位图 |
_GUICtrlMenu_GetItemBmpUnchecked |
检索显示项目未选中状态的位图 |
_GUICtrlMenu_GetItemChecked |
检索菜单项的选中状态 |
_GUICtrlMenu_GetItemCount |
检索指定菜单项的数目 |
_GUICtrlMenu_GetItemData |
检索应用程序定义的菜单项关联值 |
_GUICtrlMenu_GetItemDefault |
检索菜单项的默认状态 |
_GUICtrlMenu_GetItemDisabled |
检索菜单项的禁用状态 |
_GUICtrlMenu_GetItemEnabled |
检索菜单项的启用状态 |
_GUICtrlMenu_GetItemGrayed |
检索菜单项灰色状态 |
_GUICtrlMenu_GetItemHighlighted |
检索菜单项的高亮状态 |
_GUICtrlMenu_GetItemID |
检索菜单项的 ID |
_GUICtrlMenu_GetItemInfo |
检索菜单项的信息 |
_GUICtrlMenu_GetItemRect |
检索指定菜单项的矩形范围,返回矩形坐标数组. |
_GUICtrlMenu_GetItemRectEx |
检索指定菜单项的矩形范围,返回矩形坐标数据结构. |
_GUICtrlMenu_GetItemState |
检索菜单项的状态 |
_GUICtrlMenu_GetItemStateEx |
检索关联指定菜单项的标志 |
_GUICtrlMenu_GetItemSubMenu |
检索指定项目的激活子菜单 |
_GUICtrlMenu_GetItemText |
返回指定菜单项目的文本. |
_GUICtrlMenu_GetItemType |
检索菜单项类型 |
_GUICtrlMenu_GetMenu |
返回指定窗口的菜单句柄. |
_GUICtrlMenu_GetMenuBackground |
检索菜单背景的画笔刷 |
_GUICtrlMenu_GetMenuBarInfo |
检索指定菜单栏的信息 |
_GUICtrlMenu_GetMenuContextHelpID |
检索上下文帮助标识符 |
_GUICtrlMenu_GetMenuData |
返回应用程序定义的值(菜单数据) |
_GUICtrlMenu_GetMenuDefaultItem |
检索指定菜单的默认菜单项 |
_GUICtrlMenu_GetMenuHeight |
检索菜单的最大高度 |
_GUICtrlMenu_GetMenuInfo |
检索指定菜单的信息 |
_GUICtrlMenu_GetMenuStyle |
检索菜单样式信息 |
_GUICtrlMenu_GetSystemMenu |
允许应用程序访问、复制和修改窗口菜单 |
_GUICtrlMenu_InsertMenuItem |
插入一个新菜单项到指定位置 |
_GUICtrlMenu_InsertMenuItemEx |
插入一个新菜单项到指定位置(Ex) |
_GUICtrlMenu_IsMenu |
确定句柄是否为菜单句柄 |
_GUICtrlMenu_LoadMenu |
从与应用程序实例相关联的可执行文件加载指定菜单资源 |
_GUICtrlMenu_MapAccelerator |
映射菜单快捷键到它的菜单位置 |
_GUICtrlMenu_MenuItemFromPoint |
确定哪个菜单项在指定的位置. |
_GUICtrlMenu_RemoveMenu |
从指定菜单删除菜单项或分离子菜单 |
_GUICtrlMenu_SetItemBitmaps |
关联指定位图与一个菜单项 |
_GUICtrlMenu_SetItemBmp |
设置显示项目的位图 |
_GUICtrlMenu_SetItemBmpChecked |
设置显示项目被选中状态的位图 |
_GUICtrlMenu_SetItemBmpUnchecked |
设置显示项目未选中状态的位图 |
_GUICtrlMenu_SetItemChecked |
设置菜单项的选中状态 |
_GUICtrlMenu_SetItemData |
设置应用程序定义的菜单项值 |
_GUICtrlMenu_SetItemDefault |
设置菜单项的默认状态 |
_GUICtrlMenu_SetItemDisabled |
设置菜单项的禁用状态 |
_GUICtrlMenu_SetItemEnabled |
设置菜单项的启用状态 |
_GUICtrlMenu_SetItemGrayed |
设置菜单项的灰色状态 |
_GUICtrlMenu_SetItemHighlighted |
设置菜单项的高亮状态 |
_GUICtrlMenu_SetItemID |
设置菜单项的 ID |
_GUICtrlMenu_SetItemInfo |
更改菜单项的信息 |
_GUICtrlMenu_SetItemState |
设置菜单项的状态 |
_GUICtrlMenu_SetItemSubMenu |
设置菜单项关联的下拉菜单或子菜单 |
_GUICtrlMenu_SetItemText |
设置菜单项目文本 |
_GUICtrlMenu_SetItemType |
设置菜单项目类型 |
_GUICtrlMenu_SetMenu |
分配一个新菜单到指定窗口. |
_GUICtrlMenu_SetMenuBackground |
为菜单设置一个背景刷子(brush). |
_GUICtrlMenu_SetMenuContextHelpID |
为菜单设置一个上下文帮助ID(标识) |
_GUICtrlMenu_SetMenuData |
设置菜单定义的应用 |
_GUICtrlMenu_SetMenuDefaultItem |
设置默认菜单项目 |
_GUICtrlMenu_SetMenuHeight |
设置菜单最大高度 |
_GUICtrlMenu_SetMenuInfo |
设置指定菜单信息. |
_GUICtrlMenu_SetMenuStyle |
设置菜单样式. |
_GUICtrlMenu_TrackPopupMenu |
在指定区域显示一个快捷菜单(弹出菜单) |
_GUICtrlMonthCal_Create |
创建月份日历控件 |
_GUICtrlMonthCal_Destroy |
删除 MonthCal 控件 |
_GUICtrlMonthCal_GetCalendarBorder |
获取边框的像素大小 |
_GUICtrlMonthCal_GetCalendarCount |
获取控件当前显示的日历数 |
_GUICtrlMonthCal_GetColor |
检索控件的特定颜色 |
_GUICtrlMonthCal_GetColorArray |
检索控件指定部分的颜色 |
_GUICtrlMonthCal_GetCurSel |
返回当前选择的日期 |
_GUICtrlMonthCal_GetCurSelStr |
检索当前选定日期的字符串格式 |
_GUICtrlMonthCal_GetFirstDOW |
检索周的第一天 |
_GUICtrlMonthCal_GetFirstDOWStr |
检索周的第一天的字符串 |
_GUICtrlMonthCal_GetMaxSelCount |
检索控件中最大可选择日期范围 |
_GUICtrlMonthCal_GetMaxTodayWidth |
检索月历控件中“今天”字符串的最大宽度 |
_GUICtrlMonthCal_GetMinReqHeight |
检索显示完整月历所需的最低高度 |
_GUICtrlMonthCal_GetMinReqRect |
检索显示完整月历所需的最低尺寸 |
_GUICtrlMonthCal_GetMinReqRectArray |
检索显示完整月历所需的最低尺寸 |
_GUICtrlMonthCal_GetMinReqWidth |
检索显示完整月历所需的最小宽度 |
_GUICtrlMonthCal_GetMonthDelta |
检索月日历控件滚动速度 |
_GUICtrlMonthCal_GetMonthRange |
检索日期的高,低界限范围 |
_GUICtrlMonthCal_GetMonthRangeMax |
检索控件日期显示范围的上限 |
_GUICtrlMonthCal_GetMonthRangeMaxStr |
检索控件日期显示范围的上限值格式字符串 |
_GUICtrlMonthCal_GetMonthRangeMin |
检索控件日期显示范围的下限 |
_GUICtrlMonthCal_GetMonthRangeMinStr |
检索控件日期显示范围的下限值格式字符串 |
_GUICtrlMonthCal_GetMonthRangeSpan |
检索月历中全部显示日历天的月份跨度(译注:臆测翻译,参考原文罢!) |
_GUICtrlMonthCal_GetRange |
检索最大和最小允许日期 |
_GUICtrlMonthCal_GetRangeMax |
检索日期范围的上限 |
_GUICtrlMonthCal_GetRangeMaxStr |
检索日期范围的上限值格式字符串 |
_GUICtrlMonthCal_GetRangeMin |
检索日期范围的下限 |
_GUICtrlMonthCal_GetRangeMinStr |
检索日期范围的下限值格式字符串 |
_GUICtrlMonthCal_GetSelRange |
检索当前选定日期范围的上限和下限 |
_GUICtrlMonthCal_GetSelRangeMax |
检索用户选择日期范围的上限 |
_GUICtrlMonthCal_GetSelRangeMaxStr |
检索用户(字符串形式)选定当前日期范围的上限 |
_GUICtrlMonthCal_GetSelRangeMin |
检索用户当前选定日期的下限范围 |
_GUICtrlMonthCal_GetSelRangeMinStr |
检索用户当前选定日期下限范围的格式字符串 |
_GUICtrlMonthCal_GetToday |
检索指定为“今天”的日期信息 |
_GUICtrlMonthCal_GetTodayStr |
检索指定为“今天”的日期信息格式字符串 |
_GUICtrlMonthCal_GetUnicodeFormat |
检索控件的 Unicode 字符格式标志 |
_GUICtrlMonthCal_HitTest |
确定指定点位置的控件部分 |
_GUICtrlMonthCal_SetCalendarBorder |
设置边框的像素大小 |
_GUICtrlMonthCal_SetColor |
设置月日历特定部分的颜色 |
_GUICtrlMonthCal_SetCurSel |
设置当前选定的日期 |
_GUICtrlMonthCal_SetDayState |
设置月份中当前可见天的状态 |
_GUICtrlMonthCal_SetFirstDOW |
设置月日历控件中周的第一天 |
_GUICtrlMonthCal_SetMaxSelCount |
设置日历控件中可供选择的最大天数 |
_GUICtrlMonthCal_SetMonthDelta |
设置了月的日历控件滚动速度 |
_GUICtrlMonthCal_SetRange |
设置代表高低限的日期信息 |
_GUICtrlMonthCal_SetSelRange |
设置月日历控件特定日期的选择范围 |
_GUICtrlMonthCal_SetToday |
设置指定日期的“今天”日期信息 |
_GUICtrlMonthCal_SetUnicodeFormat |
设置控件的 Unicode 字符格式 |
_GUICtrlRebar_AddBand |
添加带区控件 |
_GUICtrlRebar_AddToolBarBand |
添加带区控件.(附带工具栏) |
_GUICtrlRebar_BeginDrag |
添加带区控件.(允许拖动操作) |
_GUICtrlRebar_Create |
创建伸缩条控件 |
_GUICtrlRebar_DeleteBand |
删除伸缩条控件带区 |
_GUICtrlRebar_Destroy |
删除控件 |
_GUICtrlRebar_DragMove |
更新 _GUICtrlRebar_BeginDrag 消息后的伸缩条控件拖动位置 |
_GUICtrlRebar_EndDrag |
终止伸缩条控件的拖动操作.不发送 $RBN_ENDDRAG 通知消息 |
_GUICtrlRebar_GetBandBackColor |
检索带区的背景颜色 |
_GUICtrlRebar_GetBandBorders |
检索带区的边界.此消息的结果可以用于计算带区的实用面积,返回数据数组. |
_GUICtrlRebar_GetBandBordersEx |
检索带区的边界.此消息的结果可以用于计算带区的实用面积,返回数据结构. |
_GUICtrlRebar_GetBandChildHandle |
检索带区子窗口句柄(如果存在) |
_GUICtrlRebar_GetBandChildSize |
检索带区设置的子尺寸 |
_GUICtrlRebar_GetBandCount |
检索伸缩条控件当前带区数 |
_GUICtrlRebar_GetBandForeColor |
检索带区前景色 |
_GUICtrlRebar_GetBandHeaderSize |
检索带区的标头大小 |
_GUICtrlRebar_GetBandID |
获取控件用于识别自定义绘制带区通知消息的值 |
_GUICtrlRebar_GetBandIdealSize |
获得带区理想的像素宽度 |
_GUICtrlRebar_GetBandLength |
获取带区像素长度 |
_GUICtrlRebar_GetBandLParam |
得到应用程序定义的值 |
_GUICtrlRebar_GetBandMargins |
获取带区页边距,返回数据数组. |
_GUICtrlRebar_GetBandMarginsEx |
获取带区页边距,返回数据结构. |
_GUICtrlRebar_GetBandRect |
检索伸缩条控件特定带区的边界矩形,返回数据数组. |
_GUICtrlRebar_GetBandRectEx |
检索伸缩条控件特定带区的边界矩形,返回数据结构. |
_GUICtrlRebar_GetBandStyle |
获取带区样式标志 |
_GUICtrlRebar_GetBandStyleBreak |
确定被设置的(带区在新行)标志 |
_GUICtrlRebar_GetBandStyleChildEdge |
确定被设置的(带区有顶底部边缘子窗口)标志 |
_GUICtrlRebar_GetBandStyleFixedBMP |
确定被设置的(调整大小不移动背景位图)标志 |
_GUICtrlRebar_GetBandStyleFixedSize |
确定被设置的(带区不能调整大小)标志 |
_GUICtrlRebar_GetBandStyleGripperAlways |
确定被设置的(带区具有尺寸控制)标志 |
_GUICtrlRebar_GetBandStyleHidden |
确定被设置的(带区不可见)标志 |
_GUICtrlRebar_GetBandStyleHideTitle |
确定被设置的(带区标题隐藏)标志 |
_GUICtrlRebar_GetBandStyleNoGripper |
确定被设置的(带区没有尺寸控制)标志 |
_GUICtrlRebar_GetBandStyleTopAlign |
确定被设置的(带区置于顶行)标志 |
_GUICtrlRebar_GetBandStyleUseChevron |
确定被设置的(显示下拉按钮)标志 |
_GUICtrlRebar_GetBandStyleVariableHeight |
确定被设置的(带区可由伸缩条改变大小)标志 |
_GUICtrlRebar_GetBandText |
检索带区文本 |
_GUICtrlRebar_GetBarHeight |
检索伸缩条控件高度 |
_GUICtrlRebar_GetBarInfo |
检索伸缩条使用的图像列表信息 |
_GUICtrlRebar_GetBKColor |
检索伸缩条控件的默认背景色 |
_GUICtrlRebar_GetColorScheme |
检索伸缩条配色方案信息 |
_GUICtrlRebar_GetRowCount |
检索伸缩条带区行数 |
_GUICtrlRebar_GetRowHeight |
检索指定带区的高度 |
_GUICtrlRebar_GetTextColor |
检索控件默认文本颜色 |
_GUICtrlRebar_GetToolTips |
检索控件关联的工具提示控件句柄 |
_GUICtrlRebar_GetUnicodeFormat |
检索控件的 Unicode 字符格式标志 |
_GUICtrlRebar_HitTest |
确定指定位置的项目 |
_GUICtrlRebar_IDToIndex |
带区标识符转换为带区索引 |
_GUICtrlRebar_MaximizeBand |
调整带区的理想或最大尺寸 |
_GUICtrlRebar_MinimizeBand |
调整带区的最小尺寸 |
_GUICtrlRebar_MoveBand |
移动带区索引为另一索引 |
_GUICtrlRebar_SetBandBackColor |
设置带区的背景颜色 |
_GUICtrlRebar_SetBandForeColor |
设置带区前景颜色 |
_GUICtrlRebar_SetBandHeaderSize |
设置带区标题大小的像素值 |
_GUICtrlRebar_SetBandID |
设置控件用于识别带区的值,以便于通知客户自定义绘制带区 |
_GUICtrlRebar_SetBandIdealSize |
设置带区理想宽度的像素值 |
_GUICtrlRebar_SetBandLength |
设置带区长度(译注:按该函数名称直译,留原文如下) |
_GUICtrlRebar_SetBandLParam |
设置应用程序定义的值 |
_GUICtrlRebar_SetBandStyle |
设置带区样式标志 |
_GUICtrlRebar_SetBandStyleBreak |
设置带区是否新起一行 |
_GUICtrlRebar_SetBandStyleChildEdge |
设置带区子窗口是否有顶部和底部边缘 |
_GUICtrlRebar_SetBandStyleFixedBMP |
设置带区调整大小时,背景位图是否不移动 |
_GUICtrlRebar_SetBandStyleFixedSize |
设置带区是否不能调整大小.不显示尺寸控制柄 |
_GUICtrlRebar_SetBandStyleGripperAlways |
设置带区是否具有尺寸控制柄, 即使伸缩条上仅有一个带区 |
_GUICtrlRebar_SetBandStyleHidden |
设置带区是否不可见 |
_GUICtrlRebar_SetBandStyleHideTitle |
设置带区是否隐藏标题 |
_GUICtrlRebar_SetBandStyleNoGripper |
设置带区是否没有尺寸控制柄, 即使伸缩条上有多个带区 |
_GUICtrlRebar_SetBandStyleTopAlign |
设置带区是否置于顶行 |
_GUICtrlRebar_SetBandStyleUseChevron |
设置是否显示下拉按钮 |
_GUICtrlRebar_SetBandStyleVariableHeight |
设置带区是否可由伸缩条改变大小 |
_GUICtrlRebar_SetBandText |
Sets the display text for the band of a rebar control |
_GUICtrlRebar_SetBarInfo |
设置 rebar 控件的特性 |
_GUICtrlRebar_SetBKColor |
设置伸缩条控件默认背景色 |
_GUICtrlRebar_SetColorScheme |
设置Rebar控件的颜色方案 |
_GUICtrlRebar_SetTextColor |
设置 rebar 控件的默认文本颜色 |
_GUICtrlRebar_SetToolTips |
设置 rebar 控件关联的工具提示控件 |
_GUICtrlRebar_SetUnicodeFormat |
设置控件 Unicode 字符格式标志 |
_GUICtrlRebar_ShowBand |
显示或隐藏 rebar 控件的某个带区 |
_GUICtrlRichEdit_AppendText |
追加文本到客户区尾端 |
_GUICtrlRichEdit_AutoDetectURL |
启用或禁用自动检测网址(URL) |
_GUICtrlRichEdit_CanPaste |
确定剪贴板内容可否粘贴到控件 |
_GUICtrlRichEdit_CanPasteSpecial |
确定剪贴板内容粘贴到控件的是两种格式的哪一种 |
_GUICtrlRichEdit_CanRedo |
确定撤销操作能否能重做 |
_GUICtrlRichEdit_CanUndo |
确定是否有撤销操作 |
_GUICtrlRichEdit_ChangeFontSize |
递增或递减选定文本的字体大小 |
_GUICtrlRichEdit_Copy |
复制文本到剪贴板 |
_GUICtrlRichEdit_Create |
创建编辑控件 |
_GUICtrlRichEdit_Cut |
剪切文本到剪贴板 |
_GUICtrlRichEdit_Deselect |
取消选择的文本,没有选择地离开 |
_GUICtrlRichEdit_Destroy |
删除 RichEdit 控件 |
_GUICtrlRichEdit_EmptyUndoBuffer |
重置控件撤消标志 |
_GUICtrlRichEdit_FindText |
搜索插入点或定位点的选择文本 |
_GUICtrlRichEdit_FindTextInRange |
搜索字符区间范围内的文本 |
_GUICtrlRichEdit_GetBkColor |
获取控件的背景颜色 |
_GUICtrlRichEdit_GetCharAttributes |
返回选中文本的属性 |
_GUICtrlRichEdit_GetCharBkColor |
检索所选文本的背景颜色,如果没有选定文本,则检索插入点右边的字符 |
_GUICtrlRichEdit_GetCharColor |
检索所选文本的颜色,如果没有选定文本,则检索插入点右边的字符 |
_GUICtrlRichEdit_GetCharPosFromXY |
获取最接近客户区指定点的字符区间位置 |
_GUICtrlRichEdit_GetCharPosOfNextWord |
获取下一个单词之前的字符区间位置 |
_GUICtrlRichEdit_GetCharPosOfPreviousWord |
获取上一个单词之前的字符区间位置 |
_GUICtrlRichEdit_GetCharWordBreakInfo |
获取上一个单词之前的字符区间位置 |
_GUICtrlRichEdit_GetFirstCharPosOnLine |
检索字符区间位置上一行的第一个字符 |
_GUICtrlRichEdit_GetFont |
获取选定字体的属性,如果没有选择,则获取插入点的字体属性 |
_GUICtrlRichEdit_GetLineCount |
检索多行编辑控件的行数 |
_GUICtrlRichEdit_GetLineLength |
检索行的字符长度 |
_GUICtrlRichEdit_GetLineNumberFromCharPos |
检索字符区间位置的行数 |
_GUICtrlRichEdit_GetNextRedo |
检索下一个可能的"重做"动作名称或类型 ID |
_GUICtrlRichEdit_GetNextUndo |
检索下一个可能的"撤消"动作名称或类型 ID |
_GUICtrlRichEdit_GetNumberOfFirstVisibleLine |
获取控件可见行的第一行 |
_GUICtrlRichEdit_GetParaAlignment |
获取选定段落的对齐方式,或如果没有选择,则获取当前段落 |
_GUICtrlRichEdit_GetParaAttributes |
获取(第一)选中段落;或没有选择时的当前段落属性 |
_GUICtrlRichEdit_GetParaBorder |
获取第一选中段落;或没有选择时的当前段落的边框设置 |
_GUICtrlRichEdit_GetParaIndents |
获取第一个选定段落;或者没有选择时的当前段落的边框缩进设置 |
_GUICtrlRichEdit_GetParaNumbering |
获获取第一个选定段落; 或者没有选择时的当前段落的编号方式类型 |
_GUICtrlRichEdit_GetParaShading |
获取获取(第一)选定的;或者如果没有选择时的当前段落的明暗处理 |
_GUICtrlRichEdit_GetParaSpacing |
获取(第一)选定段落;或者没有选择时的当前段落的间距设置 |
_GUICtrlRichEdit_GetParaTabStops |
获取(第一)选中段落;或者没有选择时的当前段落的制表位 |
_GUICtrlRichEdit_GetPasswordChar |
获取 RichEdit 控件显示当用户输入文本的密码字符 |
_GUICtrlRichEdit_GetRECT |
检索控件的格式化矩形 |
_GUICtrlRichEdit_GetScrollPos |
获取控件的滚动位置 |
_GUICtrlRichEdit_GetSel |
获取选中字符区间的低、高位置 |
_GUICtrlRichEdit_GetSelAA |
获取选中字符区间按顺序的当前锚点 |
_GUICtrlRichEdit_GetSelText |
检索当前选定的文本 |
_GUICtrlRichEdit_GetSpaceUnit |
获取水平和垂直空间计算单位,供 _GUICtrlRichEdit 函数的参数使用 |
_GUICtrlRichEdit_GetText |
获取控件中的全部文本 |
_GUICtrlRichEdit_GetTextInLine |
获取一行文本 |
_GUICtrlRichEdit_GetTextInRange |
获取字符区间位置的另一个文本 |
_GUICtrlRichEdit_GetTextLength |
获取控件中的整个文本的长度 |
_GUICtrlRichEdit_GetVersion |
获取富文本编辑控件的版本 |
_GUICtrlRichEdit_GetXYFromCharPos |
检索字符区间位置的 X、Y 坐标 |
_GUICtrlRichEdit_GetZoom |
获取控件文本区间缩放级别 |
_GUICtrlRichEdit_GotoCharPos |
移动插入点到字符区间位置 |
_GUICtrlRichEdit_HideSelection |
隐藏(或显示)选区 |
_GUICtrlRichEdit_InsertText |
在插入点或定位点插入文本 |
_GUICtrlRichEdit_IsModified |
检索 RichEdit 控件的修改标志状态 |
_GUICtrlRichEdit_IsTextSelected |
确定文本是否选中 |
_GUICtrlRichEdit_Paste |
从剪贴板粘贴 RTF 或 RTF 格式的对象 |
_GUICtrlRichEdit_PasteSpecial |
从剪贴板粘贴 RTF 或 RTF 格式的对象(专用) |
_GUICtrlRichEdit_PauseRedraw |
暂停控件的重绘 |
_GUICtrlRichEdit_Redo |
对最后的撤消作重做操作 |
_GUICtrlRichEdit_ReplaceText |
替换所选的文本 |
_GUICtrlRichEdit_ResumeRedraw |
恢复控件刷新 |
_GUICtrlRichEdit_ScrollLineOrPage |
滚动一行或一页的文本 |
_GUICtrlRichEdit_ScrollLines |
滚动多行文本 |
_GUICtrlRichEdit_ScrollToCaret |
滚动到插入符号所在行 |
_GUICtrlRichEdit_SetBkColor |
设置控件的背景颜色 |
_GUICtrlRichEdit_SetCharAttributes |
打开或关闭选定文本,(或者没有选择时,则取插入点的文本) 的属性 |
_GUICtrlRichEdit_SetCharBkColor |
设置选定文本 (或没有选定时,设置插入点插入文本) 的背景颜色 |
_GUICtrlRichEdit_SetCharColor |
设置所选文本 (或者没有选中时,设置插入点插入文本) 的颜色 |
_GUICtrlRichEdit_SetEventMask |
发送通知消息到指定的父窗口 |
_GUICtrlRichEdit_SetFont |
设置选定文本(或者没有选定时,设置插入点插入文本) 的字体属性 |
_GUICtrlRichEdit_SetLimitOnText |
修改可以键入的字符数,粘贴或将流(streamed)作为 Rich 文本格式 |
_GUICtrlRichEdit_SetModified |
设置或清除修改标志 |
_GUICtrlRichEdit_SetParaAlignment |
设置当前选定段落 (或者没有选择时,设置插入点所在段落) 的对齐方式 |
_GUICtrlRichEdit_SetParaAttributes |
设置(第一)当前选择(或没有选择时的插入点所在段落)的属性 |
_GUICtrlRichEdit_SetParaBorder |
设置(第一)当前选择(或没有选择时的插入点所在段落)的边框 |
_GUICtrlRichEdit_SetParaIndents |
设置(第一)当前选择(或没有选择时的插入点所在段落)的缩进 |
_GUICtrlRichEdit_SetParaNumbering |
设置(第一)当前选择(或没有选择时的插入点所在段落)的编号方式 |
_GUICtrlRichEdit_SetParaShading |
设置(第一)当前选择(或没有选择时的插入点所在段落)的明暗处理 |
_GUICtrlRichEdit_SetParaSpacing |
设置(第一)当前选择(或没有选择时的插入点所在段落)的段落间距 |
_GUICtrlRichEdit_SetParaTabStops |
设置(第一)当前选择(或没有选择时的插入点所在段落)的制表位 |
_GUICtrlRichEdit_SetPasswordChar |
设置代替用户输入文本显示的密码字符 |
_GUICtrlRichEdit_SetReadOnly |
设置或删除只读状态 |
_GUICtrlRichEdit_SetRECT |
设置控件的格式化矩形 |
_GUICtrlRichEdit_SetScrollPos |
设置滚动起始点 ($ix,$iY) 在控件的左上角 |
_GUICtrlRichEdit_SetSel |
设置选择字符的高、低位置 |
_GUICtrlRichEdit_SetSpaceUnit |
设置水平和垂直空间计算单位,供 _GUICtrlRichEdit 函数的参数使用 |
_GUICtrlRichEdit_SetTabStops |
设置控件制表位 |
_GUICtrlRichEdit_SetText |
设置控件的文本 |
_GUICtrlRichEdit_SetUndoLimit |
设置撤消队列可以存储的最大数量 |
_GUICtrlRichEdit_SetZoom |
设置控件缩放级别 |
_GUICtrlRichEdit_StreamFromFile |
从文件中设置控件的文本 |
_GUICtrlRichEdit_StreamFromVar |
从变量设置控件中的文本 |
_GUICtrlRichEdit_StreamToFile |
控件的内容写入到文件 |
_GUICtrlRichEdit_StreamToVar |
控件内容写入到变量 |
_GUICtrlRichEdit_Undo |
撤消控件的撤消队列中的最后编辑操作 |
_GUICtrlSlider_ClearSel |
清除当前选择范围 |
_GUICtrlSlider_ClearTics |
移除滑块中当前刻度线 |
_GUICtrlSlider_Create |
创建滑块控件 |
_GUICtrlSlider_Destroy |
删除控件 |
_GUICtrlSlider_GetBuddy |
检索特定位置与平滑调节控件合作的窗口句柄 |
_GUICtrlSlider_GetChannelRect |
检索滑块通道矩形边界的大小和位置,返回数据数组. |
_GUICtrlSlider_GetChannelRectEx |
检索滑块通道矩形边界的大小和位置,返回数据结构. |
_GUICtrlSlider_GetLineSize |
检索滑动条的通道大小 |
_GUICtrlSlider_GetLogicalTics |
检索包含滑块刻度逻辑位置的数组 |
_GUICtrlSlider_GetNumTics |
检索滑块的刻度数 |
_GUICtrlSlider_GetPageSize |
检索滑块页面大小 |
_GUICtrlSlider_GetPos |
检索滑块逻辑位置 |
_GUICtrlSlider_GetRange |
检索滑块的最高和最低位置 |
_GUICtrlSlider_GetRangeMax |
检索滑块的最大位置 |
_GUICtrlSlider_GetRangeMin |
检索滑块的最低位置 |
_GUICtrlSlider_GetSel |
检索当前选择范围的起始和结束位置 |
_GUICtrlSlider_GetSelEnd |
检索当前选择范围的结束位置 |
_GUICtrlSlider_GetSelStart |
检索当前选择范围的起始位置 |
_GUICtrlSlider_GetThumbLength |
检索滑块(指针)的长度 |
_GUICtrlSlider_GetThumbRect |
检索滑块边界矩形的大小和位置,返回数据数组. |
_GUICtrlSlider_GetThumbRectEx |
检索滑块边界矩形的大小和位置,返回数据结构. |
_GUICtrlSlider_GetTic |
检索刻度标记的逻辑位置 |
_GUICtrlSlider_GetTicPos |
检索刻度标记的当前物理位置 |
_GUICtrlSlider_GetToolTips |
检索分配给滑块的工具提示控件句柄(如果存在时). |
_GUICtrlSlider_GetUnicodeFormat |
检索控件的 Unicode 字符格式标志 |
_GUICtrlSlider_SetBuddy |
指定滑块控件合作窗口 |
_GUICtrlSlider_SetLineSize |
检索滑动条的通道大小 (此处依据示例脚本汉化) |
_GUICtrlSlider_SetPageSize |
检索滑动条的页面大小 (此处依据示例脚本汉化) |
_GUICtrlSlider_SetPos |
设置当前滑块的逻辑位置 |
_GUICtrlSlider_SetRange |
设置滑块最低和最高逻辑位置范围 |
_GUICtrlSlider_SetRangeMax |
设置滑块的最大逻辑位置 |
_GUICtrlSlider_SetRangeMin |
Sets the minimum logical position for the slider |
_GUICtrlSlider_SetSel |
设置控件有效选择范围的开始和结束位置 |
_GUICtrlSlider_SetSelEnd |
设置当前选择范围的逻辑结束位置 |
_GUICtrlSlider_SetSelStart |
设置当前选择范围的逻辑起点位置 |
_GUICtrlSlider_SetThumbLength |
设置滑块(指针)长度. |
_GUICtrlSlider_SetTic |
设置滑块指定逻辑位置的刻度标记 |
_GUICtrlSlider_SetTicFreq |
设置滑块刻度间隔频率 |
_GUICtrlSlider_SetTipSide |
设置工具提示控件位置 |
_GUICtrlSlider_SetToolTips |
分配工具提示控件到滑块控件. |
_GUICtrlSlider_SetUnicodeFormat |
设置控件 Unicode 字符格式标志 |
_GUICtrlStatusBar_Create |
创建状态栏 |
_GUICtrlStatusBar_Destroy |
删除控件 |
_GUICtrlStatusBar_EmbedControl |
嵌入子控件 |
_GUICtrlStatusBar_GetBorders |
检索水平/垂直边框的当前宽度 |
_GUICtrlStatusBar_GetBordersHorz |
检索当前水平边框宽度 |
_GUICtrlStatusBar_GetBordersRect |
检索当前矩形边框宽度 |
_GUICtrlStatusBar_GetBordersVert |
检索当前垂直边框宽度 |
_GUICtrlStatusBar_GetCount |
返回(状态栏)各部分数量 |
_GUICtrlStatusBar_GetHeight |
检索部件高度 |
_GUICtrlStatusBar_GetIcon |
检索部件图标 |
_GUICtrlStatusBar_GetParts |
检索部件的数量和界限 |
_GUICtrlStatusBar_GetRect |
检索部件边界矩形,返回数据数组. |
_GUICtrlStatusBar_GetRectEx |
检索部件边界矩形,返回数据结构. |
_GUICtrlStatusBar_GetText |
返回指定部分文本 |
_GUICtrlStatusBar_GetTextFlags |
检索部件文本长度标志 |
_GUICtrlStatusBar_GetTextLength |
检索部件文本长度 |
_GUICtrlStatusBar_GetTextLengthEx |
检索部件的 uFlag |
_GUICtrlStatusBar_GetTipText |
检索部件工具提示文本 |
_GUICtrlStatusBar_GetUnicodeFormat |
检索 Unicode 字符格式标志 |
_GUICtrlStatusBar_GetWidth |
检索部件的宽度 |
_GUICtrlStatusBar_IsSimple |
检查状态栏控件是否为简单模式 |
_GUICtrlStatusBar_Resize |
重新定义状态栏大小 |
_GUICtrlStatusBar_SetBkColor |
设置背景颜色 |
_GUICtrlStatusBar_SetIcon |
设置部件图标 |
_GUICtrlStatusBar_SetMinHeight |
设置状态窗口绘图区域最低高度 |
_GUICtrlStatusBar_SetParts |
设置部件数量与边框 |
_GUICtrlStatusBar_SetSimple |
指定是否显示简单文本状态窗口, 或显示所有窗口部件 |
_GUICtrlStatusBar_SetText |
设置状态窗口指定部件的文本 |
_GUICtrlStatusBar_SetTipText |
设置部件的工具提示文本 |
_GUICtrlStatusBar_SetUnicodeFormat |
设置 Unicode 字符格式标志 |
_GUICtrlStatusBar_ShowHide |
显示/隐藏状态栏控件 |
_GUICtrlTab_ActivateTab |
Activates a tab by its index |
_GUICtrlTab_ClickTab |
点击一个标签 |
_GUICtrlTab_Create |
创建一个标签控件(TabControl) |
_GUICtrlTab_DeleteAllItems |
删除所有标签 |
_GUICtrlTab_DeleteItem |
删除一个标签 |
_GUICtrlTab_DeselectAll |
复位标签选项卡,清除任何被设置为按下的状态 |
_GUICtrlTab_Destroy |
删除控件 |
_GUICtrlTab_FindTab |
通过指定的文本搜索一个标签. |
_GUICtrlTab_GetCurFocus |
返回控件中焦点标签的索引 |
_GUICtrlTab_GetCurSel |
检测当前选择的标签 |
_GUICtrlTab_GetDisplayRect |
检索客户区显示的矩形,返回数据数组. |
_GUICtrlTab_GetDisplayRectEx |
检索客户区显示的矩形,返回数据结构. |
_GUICtrlTab_GetExtendedStyle |
检索当前正在使用的扩展样式 |
_GUICtrlTab_GetImageList |
返回标签控件图像列表. |
_GUICtrlTab_GetItem |
返回一个Tab标签信息 |
_GUICtrlTab_GetItemCount |
返回标签的数量 |
_GUICtrlTab_GetItemImage |
检索标签图像索引 |
_GUICtrlTab_GetItemParam |
检索标签的 Param 参数数据 |
_GUICtrlTab_GetItemRect |
检索标签的边界矩形,返回数据数组. |
_GUICtrlTab_GetItemRectEx |
检索标签的边界矩形,返回数据结构. |
_GUICtrlTab_GetItemState |
检索标签的状态 |
_GUICtrlTab_GetItemText |
返回一个标签控件的文本 |
_GUICtrlTab_GetRowCount |
检索当前标签行数量 |
_GUICtrlTab_GetToolTips |
检索控件关联的工具提示控件句柄 |
_GUICtrlTab_GetUnicodeFormat |
检索控件的 Unicode 字符格式标志 |
_GUICtrlTab_HighlightItem |
设置标签项目高亮状态 |
_GUICtrlTab_HitTest |
确定测试点位于控件何处 |
_GUICtrlTab_InsertItem |
插入新标签 |
_GUICtrlTab_RemoveImage |
删除控件图像列表的图像 |
_GUICtrlTab_SetCurFocus |
设置指定标签的焦点 |
_GUICtrlTab_SetCurSel |
选择标签 |
_GUICtrlTab_SetExtendedStyle |
设置当前使用的扩展样式 |
_GUICtrlTab_SetImageList |
设置与标签控件关联的图像列表 |
_GUICtrlTab_SetItem |
设置标签选项卡的信息 |
_GUICtrlTab_SetItemImage |
设置标签选项卡图像 |
_GUICtrlTab_SetItemParam |
设置标签 param 数据 |
_GUICtrlTab_SetItemSize |
设置固定宽度制表符或所有者绘制控件的宽度和高度 |
_GUICtrlTab_SetItemState |
设置标签状态 |
_GUICtrlTab_SetItemText |
设置标签文本 |
_GUICtrlTab_SetMinTabWidth |
设置标签项目的最小宽度 |
_GUICtrlTab_SetPadding |
设置标签图标和标签文本周围的填充空间 |
_GUICtrlTab_SetToolTips |
设置控件关联的工具提示控件 |
_GUICtrlTab_SetUnicodeFormat |
设置控件 Unicode 字符格式标志 |
_GUICtrlToolbar_AddBitmap |
添加图像到图像列表 |
_GUICtrlToolbar_AddButton |
添加按钮 |
_GUICtrlToolbar_AddButtonSep |
添加一个分隔符 |
_GUICtrlToolbar_AddString |
添加新字符串到工具栏的字符串池 |
_GUICtrlToolbar_ButtonCount |
检索按钮数 |
_GUICtrlToolbar_CheckButton |
选中或取消选中某个按钮 |
_GUICtrlToolbar_ClickAccel |
使用快捷键点击特定按钮 |
_GUICtrlToolbar_ClickButton |
点击特定按钮 |
_GUICtrlToolbar_ClickIndex |
使用索引点击特定按钮 |
_GUICtrlToolbar_CommandToIndex |
检索指定命令标识符相关联的按钮索引 |
_GUICtrlToolbar_Create |
创建一个工具栏控件 |
_GUICtrlToolbar_Customize |
显示自定义工具栏对话框 |
_GUICtrlToolbar_DeleteButton |
删除工具栏按钮 |
_GUICtrlToolbar_Destroy |
删除控件 |
_GUICtrlToolbar_EnableButton |
启用或禁用指定按钮 |
_GUICtrlToolbar_FindToolbar |
查找一个指定工具栏 |
_GUICtrlToolbar_GetAnchorHighlight |
检索定位高亮设置 |
_GUICtrlToolbar_GetBitmapFlags |
检索位图类型标志 |
_GUICtrlToolbar_GetButtonBitmap |
检索按钮相关位图的索引 |
_GUICtrlToolbar_GetButtonInfo |
检索按钮信息,返回数据数组. |
_GUICtrlToolbar_GetButtonInfoEx |
检索按钮信息,返回数据结构. |
_GUICtrlToolbar_GetButtonParam |
检索按钮参数值 |
_GUICtrlToolbar_GetButtonRect |
检索按钮的矩形,返回数据数组. |
_GUICtrlToolbar_GetButtonRectEx |
检索按钮的矩形,返回数据结构. |
_GUICtrlToolbar_GetButtonSize |
检索当前按钮宽度和高度的像素值 |
_GUICtrlToolbar_GetButtonState |
检索指定按钮的状态信息 |
_GUICtrlToolbar_GetButtonStyle |
检索按钮的样式标志 |
_GUICtrlToolbar_GetButtonText |
检索按钮的显示文本 |
_GUICtrlToolbar_GetColorScheme |
检索配色方案信息 |
_GUICtrlToolbar_GetDisabledImageList |
检索按钮禁用状态的图像列表 |
_GUICtrlToolbar_GetExtendedStyle |
检索扩展样式 |
_GUICtrlToolbar_GetHotImageList |
检索热按钮状态图像列表 |
_GUICtrlToolbar_GetHotItem |
检索热项目索引 |
_GUICtrlToolbar_GetImageList |
检索默认(常规)状态图像列表 |
_GUICtrlToolbar_GetInsertMark |
检索当前插入标记 |
_GUICtrlToolbar_GetInsertMarkColor |
检索绘制插入标记的颜色 |
_GUICtrlToolbar_GetMaxSize |
检索所有可见按钮和分隔符的总大小 |
_GUICtrlToolbar_GetMetrics |
检索工具栏控件规格 |
_GUICtrlToolbar_GetPadding |
检索水平与垂直填充 |
_GUICtrlToolbar_GetRows |
返回按钮排(行)数 |
_GUICtrlToolbar_GetString |
从字符串池得到字符串 |
_GUICtrlToolbar_GetStyle |
检索工具栏的样式 |
_GUICtrlToolbar_GetStyleAltDrag |
检索控件是否具有按钮可以拖动样式 |
_GUICtrlToolbar_GetStyleCustomErase |
检索控件是否具有生成 NM_CUSTOMDRAW 通知消息的样式 |
_GUICtrlToolbar_GetStyleFlat |
检索控件是否为平面控件样式 |
_GUICtrlToolbar_GetStyleList |
检索控件是否为按钮文本在位图右边的样式 |
_GUICtrlToolbar_GetStyleRegisterDrop |
检索控件是否具有生成 TBN_GETOBJECT 通知消息的样式 |
_GUICtrlToolbar_GetStyleToolTips |
检索控件是否为具有工具提示控件的样式 |
_GUICtrlToolbar_GetStyleTransparent |
检索控件是否为透明的样式 |
_GUICtrlToolbar_GetStyleWrapable |
检索控件是否具有换行样式 |
_GUICtrlToolbar_GetTextRows |
检索按钮显示文本行的最大行数 |
_GUICtrlToolbar_GetToolTips |
返回 ToolTip 控件句柄. |
_GUICtrlToolbar_GetUnicodeFormat |
检索 Unicode 字符格式标志 |
_GUICtrlToolbar_HideButton |
隐藏或显示指定的按钮 |
_GUICtrlToolbar_HighlightButton |
设置按钮高亮状态 |
_GUICtrlToolbar_HitTest |
确定测试点的位置 |
_GUICtrlToolbar_IndexToCommand |
检索按钮相关的命令标识符 |
_GUICtrlToolbar_InsertButton |
插入按钮 |
_GUICtrlToolbar_InsertMarkHitTest |
检索点的插入标记信息 |
_GUICtrlToolbar_IsButtonChecked |
检索按钮是否被选中 |
_GUICtrlToolbar_IsButtonEnabled |
检索按钮是否启用 |
_GUICtrlToolbar_IsButtonHidden |
检索按钮是否隐藏 |
_GUICtrlToolbar_IsButtonHighlighted |
检索按钮是否高亮 |
_GUICtrlToolbar_IsButtonIndeterminate |
检索按钮是否为不确定状态 |
_GUICtrlToolbar_IsButtonPressed |
检索按钮是否被按下 |
_GUICtrlToolbar_LoadBitmap |
从文件添加位图的图像列表 |
_GUICtrlToolbar_LoadImages |
加载系统定义的按钮图像到工具栏控件的图像列表 |
_GUICtrlToolbar_MapAccelerator |
检索按钮对应的快捷键 ID |
_GUICtrlToolbar_MoveButton |
使用索引移动按钮的位置 |
_GUICtrlToolbar_PressButton |
按压或释放指定的按钮 |
_GUICtrlToolbar_SetAnchorHighlight |
设置定位高亮 |
_GUICtrlToolbar_SetBitmapSize |
设置工具栏位图图像的大小 |
_GUICtrlToolbar_SetButtonBitMap |
设置按钮相关的位图索引 |
_GUICtrlToolbar_SetButtonInfo |
设置按钮扩展信息,使用参数. |
_GUICtrlToolbar_SetButtonInfoEx |
设置按钮扩展信息,使用数据结构. |
_GUICtrlToolbar_SetButtonParam |
设置按钮参数值 |
_GUICtrlToolbar_SetButtonSize |
设置工具栏按钮的大小 |
_GUICtrlToolbar_SetButtonState |
设置按钮的状态信息 |
_GUICtrlToolbar_SetButtonStyle |
设置按钮的样式标志 |
_GUICtrlToolbar_SetButtonText |
设置按钮的显示文本 |
_GUICtrlToolbar_SetButtonWidth |
设置工具栏按钮宽度最小和最大值 |
_GUICtrlToolbar_SetCmdID |
设置工具栏按钮命令标识符 |
_GUICtrlToolbar_SetColorScheme |
设置配色方案信息 |
_GUICtrlToolbar_SetDisabledImageList |
设置禁用状态图像列表 |
_GUICtrlToolbar_SetDrawTextFlags |
设置工具栏文本绘制标志 |
_GUICtrlToolbar_SetExtendedStyle |
设置控件扩展样式 |
_GUICtrlToolbar_SetHotImageList |
设置热按钮状态图像列表 |
_GUICtrlToolbar_SetHotItem |
设置热项目 |
_GUICtrlToolbar_SetImageList |
设置默认(常规)状态按钮的图像列表 |
_GUICtrlToolbar_SetIndent |
设置第一按钮缩进 |
_GUICtrlToolbar_SetIndeterminate |
设置或清除按钮的不确定状态 |
_GUICtrlToolbar_SetInsertMark |
设置工具栏当前插入标记 |
_GUICtrlToolbar_SetInsertMarkColor |
设置绘制插入标记的颜色 |
_GUICtrlToolbar_SetMaxTextRows |
设置显示按钮文本的最大行数 |
_GUICtrlToolbar_SetMetrics |
检索工具栏控件规格 |
_GUICtrlToolbar_SetPadding |
设置控件填充 |
_GUICtrlToolbar_SetParent |
设置窗口控件发送通知消息 |
_GUICtrlToolbar_SetRows |
设置按钮行数 |
_GUICtrlToolbar_SetStyle |
设置控件样式 |
_GUICtrlToolbar_SetStyleAltDrag |
设置控件按钮是否允许被拖动 |
_GUICtrlToolbar_SetStyleCustomErase |
设置控件是否生成 NM_CUSTOMDRAW 通知消息 |
_GUICtrlToolbar_SetStyleFlat |
设置控件是否为平面类型 |
_GUICtrlToolbar_SetStyleList |
设置按钮文本是否在位图的右边 |
_GUICtrlToolbar_SetStyleRegisterDrop |
设置控件是否生成 TBN_GETOBJECT 通知消息 |
_GUICtrlToolbar_SetStyleToolTips |
设置控件是否有工具提示 |
_GUICtrlToolbar_SetStyleTransparent |
设置控件是否透明 |
_GUICtrlToolbar_SetStyleWrapable |
设置控件按钮是否 wrapable(换行) |
_GUICtrlToolbar_SetToolTips |
设置工具栏关联工具提示控件 |
_GUICtrlToolbar_SetUnicodeFormat |
设置 Unicode 字符格式标志 |
_GUICtrlToolbar_SetWindowTheme |
设置可视化样式(系统主题) |
_GUICtrlTreeView_Add |
添加主项目 |
_GUICtrlTreeView_AddChild |
添加子项目 |
_GUICtrlTreeView_AddChildFirst |
添加第一子项目 |
_GUICtrlTreeView_AddFirst |
添加第一主项目 |
_GUICtrlTreeView_BeginUpdate |
开始控件更新,直到 EndUpdate 函数被调用 |
_GUICtrlTreeView_ClickItem |
点击项目 |
_GUICtrlTreeView_Create |
创建一个树形查看(TreeView)控件 |
_GUICtrlTreeView_CreateDragImage |
创建项目拖位图 |
_GUICtrlTreeView_CreateSolidBitMap |
创建单色位图 |
_GUICtrlTreeView_Delete |
删除项目及其所有子项 |
_GUICtrlTreeView_DeleteAll |
从树形查看(Tree-View)控件移除所有项目 |
_GUICtrlTreeView_DeleteChildren |
删除项目的全部子项 |
_GUICtrlTreeView_Destroy |
删除控件 |
_GUICtrlTreeView_DisplayRect |
返回树项目矩形,返回数据数组. |
_GUICtrlTreeView_DisplayRectEx |
返回树项目矩形,返回数据结结构. |
_GUICtrlTreeView_EditText |
开始就地编辑指定项的文本 |
_GUICtrlTreeView_EndEdit |
结束项目的文本编辑 |
_GUICtrlTreeView_EndUpdate |
停止控件更新并关闭 BeginUpdate 函数 |
_GUICtrlTreeView_EnsureVisible |
确保项目可见,展开父项目或必要时滚动项目. |
_GUICtrlTreeView_Expand |
展开或折叠父项目相关的子项列表 |
_GUICtrlTreeView_ExpandedOnce |
检索项目的子项列表是否至少展开一次 |
_GUICtrlTreeView_FindItem |
检索指定文本的项目 |
_GUICtrlTreeView_FindItemEx |
搜索指定树目录路径的项目 |
_GUICtrlTreeView_GetBkColor |
返回文本背景色 |
_GUICtrlTreeView_GetBold |
检索项目文本是否为粗体样式 |
_GUICtrlTreeView_GetChecked |
检索项目复选框是否选中 |
_GUICtrlTreeView_GetChildCount |
检索父项的子项数 |
_GUICtrlTreeView_GetChildren |
检索项目是否有子项 |
_GUICtrlTreeView_GetCount |
返回项目总数 |
_GUICtrlTreeView_GetCut |
检索项目是否有剪切和粘贴操作 |
_GUICtrlTreeView_GetDropTarget |
检索项目是否为拖放目标 |
_GUICtrlTreeView_GetEditControl |
检索项目文本编辑控件句柄 |
_GUICtrlTreeView_GetExpanded |
检索项目是否展开 |
_GUICtrlTreeView_GetFirstChild |
检索指定项目的第一个子项 |
_GUICtrlTreeView_GetFirstItem |
检索顶层或绝对第一项目 |
_GUICtrlTreeView_GetFirstVisible |
检索第一可见项目 |
_GUICtrlTreeView_GetFocused |
检索项目是否具有焦点 |
_GUICtrlTreeView_GetHeight |
检索当前每个项目的高度 |
_GUICtrlTreeView_GetImageIndex |
检索正常状态图像索引 |
_GUICtrlTreeView_GetImageListIconHandle |
检索图像列表句柄 |
_GUICtrlTreeView_GetIndent |
检索子项相对父项目的缩进像素值 |
_GUICtrlTreeView_GetInsertMarkColor |
检索插入标记颜色 |
_GUICtrlTreeView_GetISearchString |
检索增量搜索字符串 |
_GUICtrlTreeView_GetItemByIndex |
检索子项在项目列表中的位置 |
_GUICtrlTreeView_GetItemHandle |
返回项目句柄 |
_GUICtrlTreeView_GetItemParam |
检索项目的特定应用值 |
_GUICtrlTreeView_GetLastChild |
检索指定项目的最后子项 |
_GUICtrlTreeView_GetLineColor |
返回线颜色 |
_GUICtrlTreeView_GetNext |
检索调用项目的下一个项目 |
_GUICtrlTreeView_GetNextChild |
检索同级别的下一个项目 |
_GUICtrlTreeView_GetNextSibling |
检索同级别的下一个项目 |
_GUICtrlTreeView_GetNextVisible |
检索指定项目的下一个可见项目 |
_GUICtrlTreeView_GetNormalImageList |
返回正常(常规)图像列表 |
_GUICtrlTreeView_GetParentHandle |
检索父项目句柄 |
_GUICtrlTreeView_GetParentParam |
检索项目的父控件 ID / Param(参数) |
_GUICtrlTreeView_GetPrev |
检索调用项目的上一个项目 |
_GUICtrlTreeView_GetPrevChild |
检索指定项目的前一子项 |
_GUICtrlTreeView_GetPrevSibling |
检索同级别的上一项目 |
_GUICtrlTreeView_GetPrevVisible |
检索第一个可见项之前的项目 |
_GUICtrlTreeView_GetScrollTime |
检索最大滚动时间 |
_GUICtrlTreeView_GetSelected |
检索项目是否选中 |
_GUICtrlTreeView_GetSelectedImageIndex |
检索选中项目的图像在图像列表中的索引 |
_GUICtrlTreeView_GetSelection |
检索当前选定的项目 |
_GUICtrlTreeView_GetSiblingCount |
检索项目的同级项目数 |
_GUICtrlTreeView_GetState |
检索项目状态 |
_GUICtrlTreeView_GetStateImageIndex |
检索项目的状态图像索引 |
_GUICtrlTreeView_GetStateImageList |
检索状态图像列表句柄 |
_GUICtrlTreeView_GetText |
检索项目文本 |
_GUICtrlTreeView_GetTextColor |
返回文本颜色 |
_GUICtrlTreeView_GetToolTips |
得到子工具提示(ToolTip)控件句柄. |
_GUICtrlTreeView_GetTree |
检索项目及其子项全部文本 |
_GUICtrlTreeView_GetUnicodeFormat |
检索 Unicode 字符格式标志 |
_GUICtrlTreeView_GetVisible |
检索项目在当前控件视图中是否可见 |
_GUICtrlTreeView_GetVisibleCount |
检索控件中显示完全可见的项目最大数 |
_GUICtrlTreeView_HitTest |
检索测试点位置相对于控件的信息,返回结果代码. |
_GUICtrlTreeView_HitTestEx |
检索测试点位置相对于控件的信息,返回数据结构. |
_GUICtrlTreeView_HitTestItem |
检索指定坐标的项目 |
_GUICtrlTreeView_Index |
检索项目在列表的位置 |
_GUICtrlTreeView_InsertItem |
插入项目 |
_GUICtrlTreeView_IsFirstItem |
检索项目是否为树的第一项目 |
_GUICtrlTreeView_IsParent |
检索某项目是否为另一个项目的父项目 |
_GUICtrlTreeView_Level |
检索项目缩进级别 |
_GUICtrlTreeView_SelectItem |
选中项目,并滚动到视图或刷新项目 |
_GUICtrlTreeView_SelectItemByIndex |
选择指定父列表索引的项目 |
_GUICtrlTreeView_SetBkColor |
设置背景色 |
_GUICtrlTreeView_SetBold |
设置项目的粗体文本样式 |
_GUICtrlTreeView_SetChecked |
设置项目复选框选中 |
_GUICtrlTreeView_SetCheckedByIndex |
设置指定索引的项目复选框选中 |
_GUICtrlTreeView_SetChildren |
设置项目的子项标志 |
_GUICtrlTreeView_SetCut |
设置项目的剪切和粘贴操作 |
_GUICtrlTreeView_SetDropTarget |
设置项目为拖放目标 |
_GUICtrlTreeView_SetFocused |
设置项目的焦点 |
_GUICtrlTreeView_SetHeight |
设置每个项目的高度 |
_GUICtrlTreeView_SetIcon |
设置项目图标 |
_GUICtrlTreeView_SetImageIndex |
设置显示项目正常状态的图标索引 |
_GUICtrlTreeView_SetIndent |
设置树视图控件的缩进宽度 |
_GUICtrlTreeView_SetInsertMark |
设置插入标记 |
_GUICtrlTreeView_SetInsertMarkColor |
设置插入标记颜色 |
_GUICtrlTreeView_SetItemHeight |
设置项目高度 |
_GUICtrlTreeView_SetItemParam |
设置项目的关联值 |
_GUICtrlTreeView_SetLineColor |
设置线条颜色 |
_GUICtrlTreeView_SetNormalImageList |
设置控件正常状态的图像列表 |
_GUICtrlTreeView_SetScrollTime |
设置最大滚动时间 |
_GUICtrlTreeView_SetSelected |
设置项目的选中状态 |
_GUICtrlTreeView_SetSelectedImageIndex |
设置选中状态的图像索引 |
_GUICtrlTreeView_SetState |
设置项目的状态 |
_GUICtrlTreeView_SetStateImageIndex |
设置项目状态图像的图像列表索引 |
_GUICtrlTreeView_SetStateImageList |
设置控件的状态图像列表 |
_GUICtrlTreeView_SetText |
设置项目文本 |
_GUICtrlTreeView_SetTextColor |
设置文字颜色 |
_GUICtrlTreeView_SetToolTips |
设置工具提示子控件句柄 |
_GUICtrlTreeView_SetUnicodeFormat |
设置 Unicode 字符格式标志 |
_GUICtrlTreeView_Sort |
项目排序 |
_GUIImageList_Add |
添加图像到图像列表 |
_GUIImageList_AddBitmap |
添加位图到图像列表 |
_GUIImageList_AddIcon |
添加图标到图像列表 |
_GUIImageList_AddMasked |
添加图像到图像列表, 生成指定位图的掩码 |
_GUIImageList_BeginDrag |
开始拖动图像 |
_GUIImageList_Copy |
源图像复制到目标图像索引 |
_GUIImageList_Create |
创建 ImageList 控件 |
_GUIImageList_Destroy |
销毁图像列表. |
_GUIImageList_DestroyIcon |
销毁图标并清理图标占用的任何内存. |
_GUIImageList_DragEnter |
指定显示拖动图像的窗口位置 |
_GUIImageList_DragLeave |
解锁指定窗口和隐藏拖动图像,使窗口更新 |
_GUIImageList_DragMove |
拖放操作过程中移动拖放图像 |
_GUIImageList_Draw |
在指定的设备环境中绘制图像列表项目 |
_GUIImageList_DrawEx |
在指定的设备环境中绘制图像列表项目 |
_GUIImageList_Duplicate |
复制现有图像列表 |
_GUIImageList_EndDrag |
结束拖动操作 |
_GUIImageList_GetBkColor |
返回图像列表当前背景颜色. |
_GUIImageList_GetIcon |
创建来自图像和图像列表掩码的图标 |
_GUIImageList_GetIconHeight |
检索图像列表中的图像高度 |
_GUIImageList_GetIconSize |
检索图像列表中图像的尺寸,返回数据数组. |
_GUIImageList_GetIconSizeEx |
检索图像列表中图像的尺寸,返回数据结构. |
_GUIImageList_GetIconWidth |
检索图像列表中图像的宽度 |
_GUIImageList_GetImageCount |
返回图像列表中图像数量 |
_GUIImageList_GetImageInfoEx |
返回关于图像的信息 |
_GUIImageList_Remove |
删除图片列表中的图像 |
_GUIImageList_ReplaceIcon |
替换图标的图像或光标 |
_GUIImageList_SetBkColor |
设置图像列表背景颜色 |
_GUIImageList_SetIconSize |
设置图像列表中的图像尺寸和删除图像列表中的全部图像 |
_GUIImageList_SetImageCount |
调整现有图像列表的大小 |
_GUIImageList_Swap |
交换两个图像的位置 |
_GUIScrollBars_EnableScrollBar |
启用/禁用滚动控件 |
_GUIScrollBars_GetScrollBarInfoEx |
检索指定滚动控件信息 |
_GUIScrollBars_GetScrollBarRect |
检索滚动控件坐标 |
_GUIScrollBars_GetScrollBarRGState |
检索滚动控件组件的状态 |
_GUIScrollBars_GetScrollBarXYLineButton |
检索滚动控件高度(相对于水平)或宽度(相对于垂直) |
_GUIScrollBars_GetScrollBarXYThumbBottom |
检索滚动条底部(相当于垂直)或右侧(相当于水平)的位置 |
_GUIScrollBars_GetScrollBarXYThumbTop |
检索滚动条顶部(相当于垂直)或左侧(相当于水平)的位置 |
_GUIScrollBars_GetScrollInfo |
检索滚动控件的参数,使用数据结构. |
_GUIScrollBars_GetScrollInfoEx |
检索滚动控件的参数,返回数据结构. |
_GUIScrollBars_GetScrollInfoMax |
检索最大滚动位置 |
_GUIScrollBars_GetScrollInfoMin |
检索最小滚动位置 |
_GUIScrollBars_GetScrollInfoPage |
检索页面大小 |
_GUIScrollBars_GetScrollInfoPos |
检索滚动框的位置 |
_GUIScrollBars_GetScrollInfoTrackPos |
检索滚动框用户拖动时的即时位置 |
_GUIScrollBars_GetScrollPos |
检索指定滚动框内滚动条的当前位置 |
_GUIScrollBars_GetScrollRange |
检索滚动条当前最低和最高滚动位置 |
_GUIScrollBars_Init |
初始化滚动控件窗口 |
_GUIScrollBars_ScrollWindow |
滚动窗口客户区的内容 |
_GUIScrollBars_SetScrollInfo |
设置滚动控件参数 |
_GUIScrollBars_SetScrollInfoMax |
设置最大滚动位置 |
_GUIScrollBars_SetScrollInfoMin |
设置最小滚动位置 |
_GUIScrollBars_SetScrollInfoPage |
设置页面大小 |
_GUIScrollBars_SetScrollInfoPos |
设置指定滚动控件内滚动框的位置 |
_GUIScrollBars_SetScrollRange |
设置滚动条的最小和最大位置 |
_GUIScrollBars_ShowScrollBar |
显示或隐藏指定的滚动控件 |
_GUIToolTip_Activate |
激活或者取消激活一个控件 |
_GUIToolTip_AddTool |
注册工具提示控件 |
_GUIToolTip_AdjustRect |
依据窗口矩形计算文本显示的矩形 |
_GUIToolTip_BitsToTTF |
编码用户位标志到 $TTF_ flags |
_GUIToolTip_Create |
创建工具提示控件 |
_GUIToolTip_DelTool |
移除一个工具(提示) |
_GUIToolTip_Destroy |
删除工具提示(ToolTip)控件 |
_GUIToolTip_EnumTools |
检索当前提示工具信息 |
_GUIToolTip_GetBubbleHeight |
检索工具提示控件高度 |
_GUIToolTip_GetBubbleSize |
检索提示控件的宽度和高度 |
_GUIToolTip_GetBubbleWidth |
返回工具提示控件的宽度 |
_GUIToolTip_GetCurrentTool |
检索当前工具信息 |
_GUIToolTip_GetDelayTime |
检索原始, 弹出或重绘的持续时间 |
_GUIToolTip_GetMargin |
检索顶部,左侧,底部和右侧的边距 |
_GUIToolTip_GetMarginEx |
检索顶部,左侧,底部和右侧的边距 |
_GUIToolTip_GetMaxTipWidth |
检索工具提示窗口的最大宽度 |
_GUIToolTip_GetText |
返回文本 |
_GUIToolTip_GetTipBkColor |
返回工具提示背景色. |
_GUIToolTip_GetTipTextColor |
返回文本颜色. |
_GUIToolTip_GetTitleBitMap |
返回标题位图图标. |
_GUIToolTip_GetTitleText |
得到工具提示(tooltip)标题文本 |
_GUIToolTip_GetToolCount |
检索工具计数 |
_GUIToolTip_GetToolInfo |
检索特定工具的信息 |
_GUIToolTip_HitTest |
检索工具控件保留的工具提示信息 |
_GUIToolTip_NewToolRect |
设置提示控件新的边界矩形 |
_GUIToolTip_Pop |
从控件移除显示的工具提示(ToolTip) |
_GUIToolTip_PopUp |
弹出显示工具提示(ToolTip)于最后鼠标消息所在坐标. |
_GUIToolTip_SetDelayTime |
设置原始, 弹出或重绘的持续时间 |
_GUIToolTip_SetMargin |
设置顶部,左侧,底部和右侧边距 |
_GUIToolTip_SetMaxTipWidth |
设置工具提示(ToolTip)窗口最大宽度 |
_GUIToolTip_SetTipBkColor |
设置背景色 |
_GUIToolTip_SetTipTextColor |
设置文本颜色 |
_GUIToolTip_SetTitle |
添加标准图标和标题字符串 |
_GUIToolTip_SetToolInfo |
设置工具的信息 |
_GUIToolTip_SetWindowTheme |
设置可视化样式 |
_GUIToolTip_ToolExists |
确定工具是否存在. |
_GUIToolTip_ToolToArray |
传输工具信息结构到数组 |
_GUIToolTip_TrackActivate |
激活或停用工具提示跟踪 |
_GUIToolTip_TrackPosition |
设置跟踪工具提示的位置 |
_GUIToolTip_TTFToBits |
解码 $TTF_flags 到用户位标志. |
_GUIToolTip_Update |
强制使工具提示(tooltip)重绘. |
_GUIToolTip_UpdateTipText |
设置工具提示文本 |
_HexToString |
转换一个十六进制字符串到字符串. |
_IEAction |
在浏览器中执行预定义的一些简单操作. |
_IEAttach |
附加到指定的 Internet Explorer 实例,基于您所选择的模式按照字符串/子字符串匹配. |
_IEBodyReadHTML |
返回文档中 <body> 标记中的HTML. |
_IEBodyReadText |
返回文档中 <body> 标记中的文本. |
_IEBodyWriteHTML |
替换文档中 <body> 标记中的HTML. |
_IECreate |
创建一个 Internet Explorer 浏览器窗口. |
_IECreateEmbedded |
创建一个适合于嵌入AutoIt图形化界面 (GUI)的web浏览器对象,此图形化界面由GuiCtrlCreateObj()生成. |
_IEDocGetObj |
给定任意的DOM对象,返回相关文档对象的引用. |
_IEDocInsertHTML |
在一个元素内部或者周围插入HTML代码. |
_IEDocInsertText |
在元素内部或周围插入文本. |
_IEDocReadHTML |
返回整个文档的HTML源代码. |
_IEDocWriteHTML |
替换整个网页(文档)的HTML代码. |
_IEErrorHandlerDeRegister |
禁用一个注册的自定义COM错误句柄 |
_IEErrorHandlerRegister |
注册并使用一个自定义COM错误处理程序. |
_IEErrorNotify |
设定ie.au3是否自动报告提醒和错误(到控制台). |
_IEFormElementCheckBoxSelect |
设定指定表单元素的值. |
_IEFormElementGetCollection |
返回指定表单中所有表单元素的集合对象变量. |
_IEFormElementGetObjByName |
返回指定名称的表单元素的对象. |
_IEFormElementGetValue |
返回指定表单元素的值. |
_IEFormElementOptionSelect |
设置指定表单元素的值. |
_IEFormElementRadioSelect |
设置指定表单元素的值. |
_IEFormElementSetValue |
设置指定表单元素的值. |
_IEFormGetCollection |
返回文档内代表表单的对象变量集或按索引的单一表单. |
_IEFormGetObjByName |
返回指定名称的表单对象的引用. |
_IEFormImageClick |
模拟对<input type=image>进行鼠标点击. 按子字符串匹配替换文本, 名称源(src标记). |
_IEFormReset |
重置指定表单为默认设置. |
_IEFormSubmit |
提交指定表单. |
_IEFrameGetCollection |
返回包含框架集中的框架或普通页面上的浮动框架或按索引的单一框架或浮动框架的对象集合. |
_IEFrameGetObjByName |
按名称返回框架或浮动框架对象的引用. |
_IEGetObjById |
按标识或名称返回对象变量. |
_IEGetObjByName |
按名称或标识返回对象变量. |
_IEHeadInsertEventScript |
在文档Head标签内插入Javascript代码. |
_IEImgClick |
模拟鼠标点击一个图像. 由匹配可选文本, 名称或源的子串匹配. |
_IEImgGetCollection |
返回一个文档内IMG标签的对象变量集合. |
_IEIsFrameSet |
检查指定窗口是否含有一个框架集(FrameSet). |
_IELinkClickByIndex |
模拟鼠标点击一个索引链接(在源码内的顺序从0开始). |
_IELinkClickByText |
模拟鼠标点击带有与所提供字符串相匹配的文本子串的链接. |
_IELinkGetCollection |
返回包含文档中全部链接的集合对象或按索引的单一链接. |
_IELoadWait |
在网页内容加载完全之后返回. |
_IELoadWaitTimeout |
获取和设置当前_IELoadWait在超时前尝试的毫秒值. |
_IENavigate |
直接在一个存在的浏览器窗口打开指定的URL地址. |
_IEPropertyGet |
返回浏览器或者 DOM 元素的一个选定的属性. |
_IEPropertySet |
设置浏览器或者DOM元素的一个选择的属性. |
_IEQuit |
关闭浏览器并移除相关的对象. |
_IETableGetCollection |
返回用以代表文档中所有表或按索引的单一表的对象变量集合. |
_IETableWriteToArray |
将表内容读取到数组. |
_IETagNameAllGetCollection |
返回在对象中指定标签名称的所有元素的对象集合. |
_IETagNameGetCollection |
返回一个对象中按标记名称或单元素索引的所有元素的对象集合. |
_IE_Example |
显示一个已预载入文档的新浏览器窗口,用于IE.au3中的例子或者您自己的测试. |
_IE_Introduction |
在新浏览器窗口中显示一个关于 IE.au3 的介绍信息 |
_IE_VersionInfo |
返回一个包含 IE.au3 版本信息的数组. |
_Iif |
执行表达式的布尔测试. |
_INetExplorerCapable |
将字符串转换为IE(Internet Explorer)浏览器的有效行 |
_INetGetSource |
获取 URL 源且不写临时文件. |
_INetMail |
打开默认用户与给定地址的邮件客户端, 主题, 邮件的正文. |
_INetSmtpMail |
发送一封电子邮件,不使用外部电子邮件程序. |
_IsPressed |
检查一个按键是否被按下 |
_MathCheckDiv |
检查 NumA 是否可被 NumB 整除 |
_Max |
确定两数中的较大数. |
_MemGlobalAlloc |
从堆栈分配指定的字节数 |
_MemGlobalFree |
释放全局内存对象并使其句柄无效 |
_MemGlobalLock |
锁定全局内存对象,并返回内存块的第一字节指针 |
_MemGlobalSize |
检索指定全局内存对象的当前大小 |
_MemGlobalUnlock |
递减与 GMEM_MOVEABLE 分配相关的内存对象的锁定计数 |
_MemMoveMemory |
向前或向后移动存储器,对齐或不对齐 |
_MemVirtualAlloc |
保留或提交调用进程的虚拟地址空间页面区域 |
_MemVirtualAllocEx |
在一个指定进程的虚拟地址空间储备内存区域 |
_MemVirtualFree |
在进程的虚拟地址空间释放页面区域 |
_MemVirtualFreeEx |
在进程的虚拟地址空间释放页面区域 |
_Min |
确定两数中的较小数 |
_MouseTrap |
限制鼠标移动到指定的座标. |
_NamedPipes_CallNamedPipe |
执行命名管道读/写操作 |
_NamedPipes_ConnectNamedPipe |
允许命名管道服务器进程等待客户端连接 |
_NamedPipes_CreateNamedPipe |
创建一个命名管道接口(instance) |
_NamedPipes_CreatePipe |
创建一个匿名管道 |
_NamedPipes_DisconnectNamedPipe |
从客户端进程断开服务器端命名管道实例 |
_NamedPipes_GetNamedPipeHandleState |
检索指定命名管道的状态信息 |
_NamedPipes_GetNamedPipeInfo |
检索有关指定命名管道的信息 |
_NamedPipes_PeekNamedPipe |
从管道复制数据到缓冲区,且不从管道中删除该数据 |
_NamedPipes_SetNamedPipeHandleState |
设置指定的命名管道读模式和阻塞模式 |
_NamedPipes_TransactNamedPipe |
在网络运行中读取和写入命名管道 |
_NamedPipes_WaitNamedPipe |
等待命名管道实例可用 |
_Net_Share_ConnectionEnum |
列出共享资源的所有连接 |
_Net_Share_FileClose |
强制关闭资源 |
_Net_Share_FileEnum |
返回服务器上打开的文件信息 |
_Net_Share_FileGetInfo |
检索服务器特定资源的信息 |
_Net_Share_PermStr |
返回资源权限的字符串表示形式 |
_Net_Share_ResourceStr |
返回字符串表示的资源 |
_Net_Share_SessionDel |
结束服务器和工作站之间的网络会话 |
_Net_Share_SessionEnum |
提供有关服务器上建立的会话 |
_Net_Share_SessionGetInfo |
检索服务器和工作站之间建立会话的信息 |
_Net_Share_ShareAdd |
共享服务器资源 |
_Net_Share_ShareCheck |
检查是否有服务器共享设备 |
_Net_Share_ShareDel |
删除服务器共享资源列表的共享名 |
_Net_Share_ShareEnum |
检索服务器上资源共享的信息 |
_Net_Share_ShareGetInfo |
检索特定服务器上共享资源的信息 |
_Net_Share_ShareSetInfo |
共享服务器资源 |
_Net_Share_StatisticsGetSvr |
检索服务器操作统计 |
_Net_Share_StatisticsGetWrk |
检索工作站操作统计 |
_Now |
按PC格式返回当前日期与时间. |
_NowCalc |
以 YYYY/MM/DD HH:MM:SS 格式返回当前日期和时间. |
_NowCalcDate |
返回当前日期,格式为YYYY/MM/DD(年/月/日). |
_NowDate |
按PC格式返回当前日期. |
_NowTime |
按PC格式返回当前日期. |
_PathFull |
根据您提供的相对路径创建一个路径,返回新创建的绝对路径 |
_PathGetRelative |
返回一个目录的相对路径 |
_PathMake |
创建包括驱动器、目录、文件名和扩展名的路径. 不是所有部分必须具备. |
_PathSplit |
完整路径拆分为驱动器、目录、文件名和扩展名. 缺少部分由空字符串代替. |
_ProcessGetName |
返回包含特定进程标识符名称的字符串. |
_ProcessGetPriority |
获取打开进程的优先级 |
_Radian |
度转换为弧度. |
_ReplaceStringInFile |
替换文本文件的字符串(二进制文件将无法正常工作!) |
_RunDOS |
在一个隐藏的命令窗口中执行一个 DOS 命令. |
_ScreenCapture_Capture |
捕捉某一屏幕区域 |
_ScreenCapture_CaptureWnd |
捕获指定窗口或者控件ID的屏幕快照 |
_ScreenCapture_SaveImage |
保存一个图像到文件 |
_ScreenCapture_SetBMPFormat |
设置BMP屏幕截图位(bit)格式 |
_ScreenCapture_SetJPGQuality |
设置质量水平,将用于屏幕捕获的 JPEG |
_ScreenCapture_SetTIFColorDepth |
设置颜色深度, 用于屏幕捕捉的 TIFF |
_ScreenCapture_SetTIFCompression |
设置TIFF屏幕截图压缩 |
_Security__AdjustTokenPrivileges |
启用或禁用指定的访问令牌权限 |
_Security__CreateProcessWithToken |
Creates a new process and its primary thread running in the security context of the specified token |
_Security__DuplicateTokenEx |
Creates a new access token that duplicates an existing token |
_Security__GetAccountSid |
检索帐户的安全标识符(SID) |
_Security__GetLengthSid |
以字节为单位返回一个有效的SID长度 |
_Security__GetTokenInformation |
检索访问令牌信息指定的类型 |
_Security__ImpersonateSelf |
获取访问令牌模拟调用进程的安全环境 |
_Security__IsValidSid |
验证一个 SID 是否有效 |
_Security__LookupAccountName |
检索帐户安全标识符(SID)和域的名称 |
_Security__LookupAccountSid |
检索帐户的 SID 名称 |
_Security__LookupPrivilegeValue |
检索本地唯一标识符的特权(LUID)值 |
_Security__OpenProcessToken |
返回调用进程的进程句柄 |
_Security__OpenThreadToken |
打开与线程相关访问令牌 |
_Security__OpenThreadTokenEx |
打开与线程相关访问令牌, 如果有需要, 模拟客户端的安全环境 |
_Security__SetPrivilege |
启用或禁用本地令牌特权 |
_Security__SetTokenInformation |
Sets various types of information for a specified access token |
_Security__SidToStringSid |
转换二进制 SID 为字符串 |
_Security__SidTypeStr |
转换一个SID类型到字符串类型. |
_Security__StringSidToSid |
转换字符串 SID 为二进制 SID |
_SendMessage |
包装常用 DLL 调用 |
_SendMessageA |
包装常用 DLL 调用 (强制 Ansi 调用) |
_SetDate |
设置系统的当前日期 |
_SetTime |
设置系统的当前时间 |
_Singleton |
执行一个设计范例,其中只有一个实例脚本可能正在运行. |
_SoundClose |
关闭 _SoundOpen 打开的声音. |
_SoundLength |
返回声音文件的长度. |
_SoundOpen |
打开一个声音文件,用于其它 _Sound 函数. |
_SoundPause |
暂停一个播放中的声音. |
_SoundPlay |
播放一个声音文件. |
_SoundPos |
返回声音的当前坐标. |
_SoundResume |
恢复暂停的声音 |
_SoundSeek |
寻道指定位置的声音 |
_SoundStatus |
返回声音的状态 |
_SoundStop |
停止播放声音. |
_SQLite_Changes |
返回最后执行操作对数据库影响的行数 |
_SQLite_Close |
关闭一个打开的 SQLite 数据库. |
_SQLite_Display2DResult |
返回或打印一个格式化后的二维数组视图到控制台 |
_SQLite_Encode |
二进制编码一个字符串,数字或二进制数据作为用于 SQLite 查询的BLOB来源. |
_SQLite_ErrCode |
返回最后一个错误代码 (数字) |
_SQLite_ErrMsg |
返回最近调用 sqlite3_* API 的英文错误条件描述的字符串 |
_SQLite_Escape |
Escapes a string or number for use as TEXT in SQLite statements |
_SQLite_Exec |
执行 SQLite 查询,不处理结果. |
_SQLite_FastEncode |
Fast encodes binary data (exclusively) for use in SQLite statements |
_SQLite_FastEscape |
Fast escapes a string or number for use as TEXT in SQLite statements |
_SQLite_FetchData |
提取 _SQLite_Query() 查询的一行数据 |
_SQLite_FetchNames |
读出 _SQLite_Query() 查询的列名 |
_SQLite_GetTable |
传递一个一维数组,其中包含执行查询的表名和数据. |
_SQLite_GetTable2d |
传递一个 2 维数组,其中包含执行查询的列名称和数据 |
_SQLite_LastInsertRowID |
返回在本次连接中数据库中最新插入的列 ID |
_SQLite_LibVersion |
返回SQLite库的版本号 |
_SQLite_Open |
打开或创建 SQLite 数据库. |
_SQLite_Query |
准备 SQLite 查询 |
_SQLite_QueryFinalize |
确定 _SQLite_Query() 查询. 查询被中断. |
_SQLite_QueryReset |
重置 _SQLite_Query() 查询 |
_SQLite_QuerySingleRow |
读出指定查询结果的第一行. |
_SQLite_SafeMode |
禁用或启用安全模式 |
_SQLite_SetTimeout |
为忙碌的处理程序设置超时 |
_SQLite_Shutdown |
卸载 SQLite.dll |
_SQLite_SQLiteExe |
在 SQLite3.exe 中执行命令 |
_SQLite_Startup |
加载 SQLite3.dll |
_SQLite_TotalChanges |
返回所有从连接开始到现在发生改变的数量(包括通过触发器和外部键) |
_StringBetween |
返回字符串中开始位置和结束位置中间的字符串. |
_StringEncrypt |
一个基于 RC4 字符串加密的函数. |
_StringExplode |
指定分隔符将字符串拆分为子字符串, 以 PHP 分解 v5 形式. |
_StringInsert |
插入一个字符串到另外一个字符串中. |
_StringProper |
转换首字母为大写,其余字母为小写.等同于 Excel 中的 Proper 函数 |
_StringRepeat |
按指定次数重复字符串. |
_StringReverse |
反转指定字符串的内容. |
_StringToHex |
转换一个字符串到十六进制字符串. |
_TCPIpToName |
解析一个IP地址到主机名称 |
_TempFile |
为临时文件创建名称,且保证不存在同名文件. |
_TicksToTime |
指定刻度量转换到时、分、秒. |
_Timer_Diff |
返回先前调用 _Timer_Init 的时间差 |
_Timer_GetIdleTime |
返回最后一次用户活动的标记数(即键盘/鼠标) |
_Timer_GetTimerID |
从 $iwParam 返回计时器ID |
_Timer_Init |
返回时间戳 (毫秒). |
_Timer_KillAllTimers |
销毁所有的计时器 |
_Timer_KillTimer |
销毁指定的计时器 |
_Timer_SetTimer |
创建具有指定超时值的计时器 |
_TimeToTicks |
转换指定的小时、分钟、秒到刻度量. |
_VersionCompare |
比较两个同等文件的版本 |
_viClose |
关闭连接到装置/设备的 VISA |
_viExecCommand |
Send a Command/Query to an Instrument/Device through the VISA interface (GPIB / TCP) |
_viFindGpib |
通过 VISA 卡接口(GPIB接口/ TCP协议)发送命令或查询到仪器或设备 |
_viGpibBusReset |
GPIB 总线“复位”:使用此函数获取 GPIB 总线某种原因的滞留. 调用这个函数可能会幸运地解决问题 |
_viGTL |
转至本地模式:仪器接受此命令将退出“远程控制模式”,进入“本地模式”. 如果仪器已在“本地模式”这将被忽略. 一般说来,如果仪器不支持此命令将仅仅停留在“远程控制模式” |
_viInteractiveControl |
互动 VISA 控制,以测试 SCPI 命令. |
_viOpen |
打开 VISA 连接到仪器/设备 |
_viSetAttribute |
设置任意 VISA 属性,也可以由 _viSetTimeout 调用来设置其他 VISA 的具体属性. 欲了解更多信息,请阅读 VISA 文档及 VISA 属性列表及其相应值 values. |
_viSetTimeout |
设置 VISA 超时时间的毫秒值 |
_WeekNumberISO |
计算给定日期的周数(年度的第几周). |
_WinAPI_AbortPath |
关闭并放弃指定设备场景中的所有路径 |
_WinAPI_AboutDlg |
显示 Windows 的 "关于" 对话框. |
_WinAPI_ActivateKeyboardLayout |
设置调用线程或当前进程输入法区域标识符. |
_WinAPI_AddClipboardFormatListener |
Places the given window in the system-maintained clipboard format listener list. |
_WinAPI_AddFontMemResourceEx |
添加内存映像的字体资源. |
_WinAPI_AddFontResourceEx |
添加指定文件的字体资源到系统字体表. |
_WinAPI_AddIconOverlay |
通过合并图标和遮盖掩码创建图标 |
_WinAPI_AddIconTransparency |
为32位图标添加透明度 |
_WinAPI_AddMRUString |
添加字符串到最近使用(MRU)的列表顶部. |
_WinAPI_AdjustBitmap |
Creates a new device-depended bitmap (DDB) from the source bitmap with new dimensions and color adjustment. |
_WinAPI_AdjustTokenPrivileges |
启用或禁用指定的访问令牌权限. |
_WinAPI_AdjustWindowRectEx |
基于客户区大小计算窗体矩形所需的大小 |
_WinAPI_AlphaBlend |
显示位图透明或半透明的像素. |
_WinAPI_AngleArc |
绘制一条线段及一段弧 |
_WinAPI_AnimateWindow |
启用窗口显示或隐藏时生成的特殊效果. |
_WinAPI_Arc |
绘制椭圆弧 |
_WinAPI_ArcTo |
绘制椭圆弧 |
_WinAPI_ArrayToStruct |
转换字符串数组到结构. |
_WinAPI_AssignProcessToJobObject |
分配进程到现有作业对象. |
_WinAPI_AssocGetPerceivedType |
根据文件扩展名检索文件的理解(perceived)类型. |
_WinAPI_AssocQueryString |
从注册表搜索并获取文件或协议关联的字符串. |
_WinAPI_AttachConsole |
调用进程到控制台,并附有指定的进程 |
_WinAPI_AttachThreadInput |
输入一个线程处理机制到另一个线程 |
_WinAPI_BackupRead |
Backs up a file or directory, including the security information. |
_WinAPI_BackupReadAbort |
Finishes the use of _WinAPI_BackupRead() on the handle. |
_WinAPI_BackupSeek |
Seeks forward in a data stream initially accessed by using the _WinAPI_BackupRead() or _WinAPI_BackupWrite() function. |
_WinAPI_BackupWrite |
Restore a file or directory that was backed up using _WinAPI_BackupRead(). |
_WinAPI_BackupWriteAbort |
Finishes the use of _WinAPI_BackupWrite() on the handle. |
_WinAPI_Beep |
生成一个简单音调的蜂鸣器声音 |
_WinAPI_BeginBufferedPaint |
Begins a buffered paint operation. |
_WinAPI_BeginDeferWindowPos |
为多窗口位置结构分配内存. |
_WinAPI_BeginPaint |
准备绘制指定的窗口. |
_WinAPI_BeginPath |
在指定设备场景中启动一个路径分支 |
_WinAPI_BeginUpdateResource |
获取用于添加,删除或替换二进制模块资源的句柄. |
_WinAPI_BitBlt |
执行彩色数据位块传输 |
_WinAPI_BringWindowToTop |
将指定窗口置于 Z 序的顶层. |
_WinAPI_BroadcastSystemMessage |
发送消息到指定的收件人. |
_WinAPI_BrowseForFolderDlg |
显示对话框, 使用户能够选择处理程序(Shell)文件夹. |
_WinAPI_BufferedPaintClear |
Clears a specified rectangle in the buffer to ARGB = {0,0,0,0}. |
_WinAPI_BufferedPaintInit |
Initialize buffered painting for the current thread. |
_WinAPI_BufferedPaintSetAlpha |
Sets the alpha to a specified value in a given rectangle. |
_WinAPI_BufferedPaintUnInit |
Closes down buffered painting for the current thread. |
_WinAPI_CalculatePopupWindowPosition |
(指定定位点,弹出窗口的大小,标志以及可选排除矩形)计算弹出窗体的适当位置. |
_WinAPI_CallNextHookEx |
目前钩链的钩子信息传递到下一个钩子程序 |
_WinAPI_CallWindowProc |
目前钩链的钩子信息传递到下一个钩子程序 |
_WinAPI_CallWindowProcW |
Passes message information to the specified window procedure. |
_WinAPI_CascadeWindows |
Cascades the specified child windows of the specified parent window. |
_WinAPI_ChangeWindowMessageFilterEx |
修改指定窗体的用户界面权限隔离(UIPI)消息过滤器 |
_WinAPI_CharToOem |
转换字符串为 OEM 定义的字符集. |
_WinAPI_ChildWindowFromPointEx |
确定子窗口(如果存在)是否属于包含指定点的父窗口. |
_WinAPI_ClientToScreen |
转换客户区窗口指定点的坐标到一个屏幕坐标 |
_WinAPI_ClipCursor |
限制光标在屏幕内移动的区域(Confines the cursor to a rectangular area on the screen). |
_WinAPI_CloseDesktop |
关闭桌面对象的句柄 |
_WinAPI_CloseEnhMetaFile |
关闭增强型图元文件设备环境,并返回标识增强型图元文件格式的句柄. |
_WinAPI_CloseFigure |
关闭路径中打开的图形 |
_WinAPI_CloseHandle |
关闭一个打开的对象句柄 |
_WinAPI_CloseThemeData |
关闭主题数据句柄. |
_WinAPI_CloseWindow |
关闭指定的窗口. |
_WinAPI_CloseWindowStation |
关闭窗口站 |
_WinAPI_CoInitialize |
初始化由调用进程使用的 COM 库. |
_WinAPI_ColorAdjustLuma |
Changes the luminance of a RGB value. |
_WinAPI_ColorHLSToRGB |
转换色调, 亮度, 饱和度(HLS)颜色为 RGB 格式. |
_WinAPI_ColorRGBToHLS |
转换 RGB 颜色到 HLS 格式的色调, 亮度, 饱和度 |
_WinAPI_CombineRgn |
结合两个区域,并存储结果在第三区域 |
_WinAPI_CombineTransform |
Concatenates two world-space to page-space transformations. |
_WinAPI_CommandLineToArgv |
解析命令行字符串,并返回命令行参数数组. |
_WinAPI_CommDlgExtendedError |
返回通用对话框的错误字符串. 此字符串表示通用对话框函数执行时发生的错误. |
_WinAPI_CommDlgExtendedErrorEx |
Returns a common dialog box error code. |
_WinAPI_CompareString |
Compares two character strings for a specified locale. |
_WinAPI_CompressBitmapBits |
从指定位图中创建压缩数据块 |
_WinAPI_CompressBuffer |
Compresses a buffer with specified compression format and engine type. |
_WinAPI_ComputeCrc32 |
计算内存块的CRC32校验值 |
_WinAPI_ConfirmCredentials |
Confirms the validity of the credential harvested. |
_WinAPI_CopyBitmap |
创建设备无关位图(DIB)指定的位图区段副本. |
_WinAPI_CopyCursor |
创建一个指定光标的副本. |
_WinAPI_CopyEnhMetaFile |
复制增强型图元文件格式到指定的文件. |
_WinAPI_CopyFileEx |
复制现有文件到一个新文件,将应用程序的进展通知回调函数. |
_WinAPI_CopyIcon |
从其它模块复制指定的图标 |
_WinAPI_CopyImage |
创建新图像(图标,光标或位图), 并复制指定图像的新属性. |
_WinAPI_CopyRect |
复制一个矩形坐标到另外一个矩形 . |
_WinAPI_CopyStruct |
创建指定结构的副本. |
_WinAPI_CoTaskMemAlloc |
指定任务存储块. |
_WinAPI_CoTaskMemFree |
释放任务的内存块. |
_WinAPI_CoTaskMemRealloc |
修改任务存储块的大小. |
_WinAPI_CoUninitialize |
关闭当前进程的 COM 库. |
_WinAPI_Create32BitHBITMAP |
Creates a 32 bits-per-pixel bitmap from the specified icon. |
_WinAPI_Create32BitHICON |
Converts an icon to a 32 bits-per-pixel format and copies to the new icon. |
_WinAPI_CreateANDBitmap |
Creates AND bitmask device-independent bitmap (DIB) from the specified bitmap. |
_WinAPI_CreateBitmap |
使用指定的宽度,高度,与颜色格式创建一个位图 |
_WinAPI_CreateBitmapIndirect |
创建具有指定宽度, 高度和颜色格式(调色板及像素位)的位图 |
_WinAPI_CreateBrushIndirect |
创建指定样式,颜色和图案的逻辑画笔. |
_WinAPI_CreateBuffer |
Allocates a block of memory from the internal library heap. |
_WinAPI_CreateCaret |
新建系统插入符的形状并分配给指定窗口. |
_WinAPI_CreateColorAdjustment |
Ceates $tagCOLORADJUSTMENT structure specifies the color adjustment. |
_WinAPI_CreateCompatibleBitmap |
创建与指定设备环境兼容的位图 |
_WinAPI_CreateCompatibleBitmapEx |
创建适合设备的并以指定颜色填充的位图 |
_WinAPI_CreateCompatibleDC |
创建与指定的设备兼容的存储设备环境 |
_WinAPI_CreateDesktop |
Creates a new desktop, associates it with the current window station of the calling process. |
_WinAPI_CreateDIB |
创建未压缩且设备无关的位图 |
_WinAPI_CreateDIBColorTable |
从指定颜色数组创建RGB颜色表 |
_WinAPI_CreateDIBitmap |
由DIB创建合适的位图(DDB)并设置合适的位图数位 |
_WinAPI_CreateDIBSection |
创建应用程序可以直接写入的 DIB(设备无关位图文件). |
_WinAPI_CreateDirectory |
Creates a new directory. |
_WinAPI_CreateDirectoryEx |
Creates a new directory with the attributes of a specified template directory. |
_WinAPI_CreateEllipticRgn |
创建椭圆区域. |
_WinAPI_CreateEmptyIcon |
创建指定宽高及色深的透明图标 |
_WinAPI_CreateEnhMetaFile |
创建增强型图元文件格式的设备环境. |
_WinAPI_CreateEvent |
创建或者打开一个命名的或者未命名的事件对象 |
_WinAPI_CreateFile |
为其它设备创建或者打开一个文件. |
_WinAPI_CreateFileEx |
创建或打开文件或 I/O 设备. |
_WinAPI_CreateFileMapping |
创建或打开指定文件的有名或无名文件映射对象. |
_WinAPI_CreateFont |
创建一个带有指定字符的逻辑字体,注:characteristics有字符的意思也有特性的意思(可能翻译错误). |
_WinAPI_CreateFontIndirect |
创建有具体参数的逻辑字体 |
_WinAPI_CreateGUID |
创建全局唯一标识符(GUID) |
_WinAPI_CreateHardLink |
Establishes a hard link between an existing file and a new file. |
_WinAPI_CreateIcon |
创建指定大小,颜色,位模式的图标. |
_WinAPI_CreateIconFromResourceEx |
创建资源位描述的图标或光标. |
_WinAPI_CreateIconIndirect |
创建指定大小,颜色和位模式的图标或光标. |
_WinAPI_CreateJobObject |
创建或打开作业对象. |
_WinAPI_CreateMargins |
以指定左右顶底的保留边空创建$tagMARGINS结构 |
_WinAPI_CreateMRUList |
创建一个新的最近使用(MRU)列表. |
_WinAPI_CreateMutex |
创建或打开一个命名的或者非命名的互斥体对象 |
_WinAPI_CreateNullRgn |
Creates an empty region. |
_WinAPI_CreateNumberFormatInfo |
Creates a $tagNUMBERFMT structure with the specified number formatting information. |
_WinAPI_CreateObjectID |
Creates or retrieves the object identifier for the specified file or directory. |
_WinAPI_CreatePen |
创建指定样式,宽度和颜色得逻辑笔. |
_WinAPI_CreatePoint |
使用指定点的x-和y-坐标创建$tagPOINT结构 |
_WinAPI_CreatePolygonRgn |
创建一个多边形区域. |
_WinAPI_CreateProcess |
创建一个新进程和它的主线程. |
_WinAPI_CreateProcessWithToken |
Creates a new process and its primary thread in the security context of the specified token. |
_WinAPI_CreateRect |
创建指定矩形坐标的 $tagRECT 结构.使用矩形 4 角坐标 |
_WinAPI_CreateRectEx |
创建指定矩形坐标的 $tagRECT 结构.使用矩形左上角坐标和宽,高值. |
_WinAPI_CreateRectRgn |
创建矩形 |
_WinAPI_CreateRectRgnIndirect |
创建矩形区域. |
_WinAPI_CreateRoundRectRgn |
创建圆角矩形 |
_WinAPI_CreateSemaphore |
创建或打开有名或无名的信号量对象. |
_WinAPI_CreateSize |
以指定矩形的指定宽高创建$tagSIZE结构 |
_WinAPI_CreateSolidBitmap |
创建单色位图 |
_WinAPI_CreateSolidBrush |
创建指定纯色的逻辑刷 |
_WinAPI_CreateStreamOnHGlobal |
Creates a stream object that uses a memory handle to store the stream contents. |
_WinAPI_CreateString |
Copies a specified string to the newly allocated memory block and returns its pointer. |
_WinAPI_CreateSymbolicLink |
Creates a symbolic link. |
_WinAPI_CreateTransform |
Ceates $tagXFORM structure specifies a world-space to page-space transformation. |
_WinAPI_CreateWindowEx |
创建重叠,弹出,或子窗口 |
_WinAPI_CreateWindowStation |
Creates a window station object, associates it with the calling process, and assigns it to the current session. |
_WinAPI_DecompressBuffer |
Decompresses an entire compressed buffer. |
_WinAPI_DecryptFile |
Decrypts an encrypted file or directory. |
_WinAPI_DeferWindowPos |
更新指定窗口的多窗口位置结构. |
_WinAPI_DefineDosDevice |
定义, 重新定义, 或删除 MS-DOS 设备名称. |
_WinAPI_DefSubclassProc |
Calls the next handler in a window's subclass chain. |
_WinAPI_DefWindowProc |
调用默认窗口程序,以提供默认处理 |
_WinAPI_DefWindowProcW |
Calls the default window procedure to provide default processing for any window messages. |
_WinAPI_DeleteDC |
删除指定的设备环境 |
_WinAPI_DeleteEnhMetaFile |
删除增强型图元文件格式或增强型图元文件格式句柄. |
_WinAPI_DeleteFile |
删除现有文件. |
_WinAPI_DeleteObject |
删除逻辑笔,画笔,字体,位图,区域或调色板 |
_WinAPI_DeleteObjectID |
从指定文件或目录移除对象标识符 |
_WinAPI_DeleteVolumeMountPoint |
删除驱动器号或安装文件夹. |
_WinAPI_DeregisterShellHookWindow |
注销指定的命令解释程序(shell)窗口.(即已注册为接收命令解释程序(shell)钩子消息的窗口). |
_WinAPI_DestroyCaret |
销毁插入符号当前的形状,释放窗口插入符号,并删除屏幕上插入符号. |
_WinAPI_DestroyCursor |
销毁光标并释放任何内存占用的光标. |
_WinAPI_DestroyIcon |
销毁一个图标,并清空任何图标占用的内存 |
_WinAPI_DestroyWindow |
销毁指定的窗口 |
_WinAPI_DeviceIoControl |
发送控制代码到指定的设备驱动程序. |
_WinAPI_DisplayStruct |
Displays data from the specified structure or memory address as a list. |
_WinAPI_DllGetVersion |
Retrieves a DLL-specific version information. |
_WinAPI_DllInstall |
注册 OLE 控件(例如 DLL) 或 ActiveX 控件(OCX)文件. |
_WinAPI_DllUninstall |
注销 OLE 控件(例如 DLL) 或 ActiveX 控件(OCX)文件. |
_WinAPI_DPtoLP |
Converts device coordinates into logical coordinates. |
_WinAPI_DragAcceptFiles |
确定窗口是否接受拖放文件. |
_WinAPI_DragFinish |
释放系统应用程序传输文件名称使用的内存. |
_WinAPI_DragQueryFileEx |
检索拖放操作成功后的文件名称. |
_WinAPI_DragQueryPoint |
检索拖放操作时间内鼠标指针的位置. |
_WinAPI_DrawAnimatedRects |
动画窗口的标题,显示图标或窗口的最小化或最大化. |
_WinAPI_DrawBitmap |
绘制位图到指定的设备环境. |
_WinAPI_DrawEdge |
绘制一或多个矩形的边缘 |
_WinAPI_DrawFocusRect |
Draws a rectangle in the style used to indicate that the rectangle has the focus. |
_WinAPI_DrawFrameControl |
绘制指定类型和样式的框架控件 |
_WinAPI_DrawIcon |
绘制图标或光标到指定的设备环境 |
_WinAPI_DrawIconEx |
绘制图标或光标到指定的设备环境 |
_WinAPI_DrawLine |
绘制一条线 |
_WinAPI_DrawShadowText |
绘制指定矩形内带有阴影的格式化文本. |
_WinAPI_DrawText |
在指定的矩形中绘出格式化的文本 |
_WinAPI_DrawThemeBackground |
绘制指定控件的部分边界,并依据视觉样式的定义填充. |
_WinAPI_DrawThemeEdge |
Draws one or more edges defined by the visual style of a rectangle. |
_WinAPI_DrawThemeIcon |
Draws an image from an image list with the icon effect defined by the visual style. |
_WinAPI_DrawThemeParentBackground |
绘制父控件部分,即部分透明或 alpha 混合子控件. |
_WinAPI_DrawThemeText |
绘制由视觉样式定义颜色和字体的文本. |
_WinAPI_DrawThemeTextEx |
绘制由视觉样式定义颜色和字体的文本.(扩展) |
_WinAPI_DuplicateEncryptionInfoFile |
Copies the EFS metadata from one file or directory to another. |
_WinAPI_DuplicateHandle |
复制对象句柄 |
_WinAPI_DuplicateTokenEx |
Creates a new primary or impersonation access token that duplicates an existing token. |
_WinAPI_DwmEnableBlurBehindWindow |
Enables the blur effect on a specified window. |
_WinAPI_DwmEnableComposition |
启用或禁用桌面窗口管理器(DWM)的组成. |
_WinAPI_DwmExtendFrameIntoClientArea |
扩展客户区背后的窗口框架. |
_WinAPI_DwmGetColorizationColor |
检索当前桌面窗口管理器(DWM)玻璃组成的颜色. |
_WinAPI_DwmGetWindowAttribute |
获取指定窗口应用属性的当前值. |
_WinAPI_DwmInvalidateIconicBitmaps |
Indicates that all previously provided iconic bitmaps from a window, both thumbnails and peek representations, should be refreshed. |
_WinAPI_DwmIsCompositionEnabled |
确定是否启用桌面窗口管理器(DWM)的组成. |
_WinAPI_DwmQueryThumbnailSourceSize |
返回桌面窗口管理器(DWM)源缩略图的大小. |
_WinAPI_DwmRegisterThumbnail |
创建桌面窗口管理器(DWM)缩略图目标与源窗口之间的关系. |
_WinAPI_DwmSetIconicLivePreviewBitmap |
Sets a static, iconic bitmap to display a live preview (also known as a Peek preview) of a window or tab. |
_WinAPI_DwmSetIconicThumbnail |
Sets a static, iconic bitmap on a window or tab to use as a thumbnail representation. |
_WinAPI_DwmSetWindowAttribute |
设置适用于窗口的非客户端属性值. |
_WinAPI_DwmUnregisterThumbnail |
移除桌面窗口管理器(DWM)缩略图关系. |
_WinAPI_DwmUpdateThumbnailProperties |
指定桌面窗口管理器(DWM)缩略图属性. |
_WinAPI_DWordToFloat |
将DWORD类型值转换为FLOAT类型值 |
_WinAPI_DWordToInt |
转换 DWORD 类型值为 INT 类型的值. |
_WinAPI_EjectMedia |
设备弹出媒介. |
_WinAPI_Ellipse |
绘制椭圆. |
_WinAPI_EmptyWorkingSet |
从指定进程移除所有可能页 |
_WinAPI_EnableWindow |
启用或禁用鼠标和键盘输入到指定的窗口或控件 |
_WinAPI_EncryptFile |
Encrypts a file or directory. |
_WinAPI_EncryptionDisable |
Disables or enables encryption of the specified directory and the files in it. |
_WinAPI_EndBufferedPaint |
Completes a buffered paint operation and frees the associated buffered paint handle. |
_WinAPI_EndDeferWindowPos |
同时更新屏幕刷新周期内一或多个窗口的位置和大小. |
_WinAPI_EndPaint |
标记指定窗口的绘图终点. |
_WinAPI_EndPath |
关闭路径包并将由包定义的路径选入指定场景 |
_WinAPI_EndUpdateResource |
更新或删除资源模块内的修改. |
_WinAPI_EnumChildProcess |
枚举指定进程的子进程. |
_WinAPI_EnumChildWindows |
枚举指定父窗的子窗口. |
_WinAPI_EnumDesktops |
Enumerates all desktops associated with the specified window station of the calling process. |
_WinAPI_EnumDesktopWindows |
Enumerates all top-level windows associated with the specified desktop. |
_WinAPI_EnumDeviceDrivers |
检索系统设备驱动程序的加载地址. |
_WinAPI_EnumDisplayDevices |
获取系统显示设备的信息 |
_WinAPI_EnumDisplayMonitors |
Enumerates display monitors (including invisible pseudo-monitors associated with the mirroring drivers). |
_WinAPI_EnumDisplaySettings |
检索显示设备图形模式信息. |
_WinAPI_EnumDllProc |
Enumerates an exported functions of the specified dynamic-link library (DLL). |
_WinAPI_EnumFiles |
Enumerates the files and subdirectories for the specified directory with a name that matches the template. |
_WinAPI_EnumFileStreams |
Enumerates all streams with a ::$DATA stream type in the specified file or directory. |
_WinAPI_EnumHardLinks |
Enumerates all the hard links to the specified file. |
_WinAPI_EnumMRUList |
枚举最近使用(MRU)列表的内容. |
_WinAPI_EnumPageFiles |
Retrieves information for each installed pagefile in the system. |
_WinAPI_EnumProcessHandles |
Enumerates a handles that belong to the specified process. |
_WinAPI_EnumProcessModules |
Retrieves a handle and name for each module in the specified process. |
_WinAPI_EnumProcessThreads |
枚举指定进程的线程. |
_WinAPI_EnumProcessWindows |
枚举指定进程的窗口. |
_WinAPI_EnumResourceLanguages |
枚举特定语言的资源, 类型与名称, 以及相关的二进制模块. |
_WinAPI_EnumResourceNames |
枚举二进制模块指定类型的资源. |
_WinAPI_EnumResourceTypes |
枚举二进制模块的资源类型. |
_WinAPI_EnumSystemGeoID |
Enumerates the geographical location identifiers (GEOID) that are available on the operating system. |
_WinAPI_EnumSystemLocales |
枚举操作系统安装或支持的区域设置. |
_WinAPI_EnumUILanguages |
Enumerates the user interface languages that are available on the operating system. |
_WinAPI_EnumWindows |
枚举所有窗口 |
_WinAPI_EnumWindowsPopup |
枚举弹出窗口 |
_WinAPI_EnumWindowStations |
Enumerates all window stations in the current session. |
_WinAPI_EnumWindowsTop |
枚举所有顶层窗口 |
_WinAPI_EqualMemory |
Compares two blocks of memory to determine whether the specified number of bytes are identical. |
_WinAPI_EqualRect |
确定两个指定矩形是否相等. |
_WinAPI_EqualRgn |
检查两个指定区域是否相同. |
_WinAPI_ExcludeClipRect |
从已存在的剪切区域中减去指定矩形区域创建新的剪切区域 |
_WinAPI_ExpandEnvironmentStrings |
扩展环境变量字符串和替换它们的自己定义值 |
_WinAPI_ExtCreatePen |
Creates a logical cosmetic or geometric pen that has the specified style, width, and brush attributes. |
_WinAPI_ExtCreateRegion |
从指定区域和转换数据创建区域 |
_WinAPI_ExtFloodFill |
使用当前的画笔填充一个显示面. |
_WinAPI_ExtractIcon |
Extracts an icon from the specified executable file, DLL, or icon file. |
_WinAPI_ExtractIconEx |
创建文件中提取的大或小图标的句柄数组 |
_WinAPI_ExtSelectClipRgn |
使用指定模式组合指定区域与目前剪辑区域. |
_WinAPI_FatalAppExit |
显示消息框, 并终止应用程序 |
_WinAPI_FatalExit |
Transfers execution control to the debugger. |
_WinAPI_FileEncryptionStatus |
Retrieves the encryption status of the specified file. |
_WinAPI_FileExists |
Tests whether the specified path is existing file. |
_WinAPI_FileInUse |
测试指定文件是否正被另一程序使用 |
_WinAPI_FillMemory |
Fills a block of memory with the given value. |
_WinAPI_FillPath |
关闭当前路径中所有打开的图形并以当前画笔填充 |
_WinAPI_FillRect |
使用指定的笔刷填充矩形 |
_WinAPI_FillRgn |
使用指定画刷填充区域. |
_WinAPI_FindClose |
Closes a file search handle. |
_WinAPI_FindCloseChangeNotification |
Stops change notification handle monitoring. |
_WinAPI_FindExecutable |
检索与指定文件名相关联的可执行文件的名称 |
_WinAPI_FindFirstChangeNotification |
Creates a change notification handle and sets up initial change notification filter conditions. |
_WinAPI_FindFirstFile |
Searches a directory for a file or subdirectory with a name that matches a specific name. |
_WinAPI_FindFirstFileName |
Creates an enumeration of all the hard links to the specified file. |
_WinAPI_FindFirstStream |
Enumerates the first stream with a ::$DATA stream type in the specified file or directory. |
_WinAPI_FindNextChangeNotification |
Requests that the operating system signal a change notification handle the next time it detects an appropriate change. |
_WinAPI_FindNextFile |
Continues a file or directory search. |
_WinAPI_FindNextFileName |
Continues enumerating the hard links. |
_WinAPI_FindNextStream |
Continues a stream search. |
_WinAPI_FindResource |
确定模块内指定资源类型和名称的位置. |
_WinAPI_FindResourceEx |
确定模块中指定类型, 名称和语言的资源位置. |
_WinAPI_FindTextDlg |
Creates a system-defined modeless Find dialog box to search for text in a document. |
_WinAPI_FindWindow |
检索类名和窗口名称相匹配的顶层窗口句柄 |
_WinAPI_FlashWindow |
指定的窗口闪烁一次 |
_WinAPI_FlashWindowEx |
闪烁指定的窗口 |
_WinAPI_FlattenPath |
将选入当前场景的路径中的所有曲线转化为变成一系列直线 |
_WinAPI_FloatToDWord |
将DWORD类型值转换为FLOAT类型值 |
_WinAPI_FloatToInt |
转换 4 字节浮点值为整型值 |
_WinAPI_FlushFileBuffers |
刷新缓冲区的指定文件, 并写入所有缓冲数据 |
_WinAPI_FlushFRBuffer |
Destroys the internal buffer that used the _WinAPI_FindTextDlg() and _WinAPI_ReplaceTextDlg() functions. |
_WinAPI_FlushViewOfFile |
将文件映射视图写入到磁盘上的字节范围内. |
_WinAPI_FormatDriveDlg |
打开带外观的格式化对话框 |
_WinAPI_FormatMessage |
格式化消息字符串 |
_WinAPI_FrameRect |
使用指定的笔刷绘制指定的矩形边框 |
_WinAPI_FrameRgn |
使用指定画笔绘制指定区域周围边框. |
_WinAPI_FreeLibrary |
递减加载的动态链接库(DLL)模块引用计数 |
_WinAPI_FreeMemory |
Frees a memory block in the internal library heap. |
_WinAPI_FreeMRUList |
释放最近使用(MRU)列表h和写缓存数据到注册表相关的句柄. |
_WinAPI_FreeResource |
递减(减少一)加载资源的引用计数. |
_WinAPI_GdiComment |
Copies a comment from a buffer into a specified enhanced-format metafile. |
_WinAPI_GetActiveWindow |
检索附加到调用进程消息队列的活动窗口句柄. |
_WinAPI_GetAllUsersProfileDirectory |
Retrieves the path to the root of the directory that contains program data shared by all users. |
_WinAPI_GetAncestor |
检索指定窗口的祖句柄 |
_WinAPI_GetApplicationRestartSettings |
Retrieves the restart information registered for the specified process. |
_WinAPI_GetArcDirection |
获取指定设备场景中指定弧的方向 |
_WinAPI_GetAsyncKeyState |
确定函数调用时,按键是按下还是松开 |
_WinAPI_GetBinaryType |
确定文件是否为可执行(.exe)文件,如果是,则子系统运行这个可执行文件. |
_WinAPI_GetBitmapBits |
将设备支持的位图数位复制到缓冲区 |
_WinAPI_GetBitmapDimension |
获取指定位图尺寸 |
_WinAPI_GetBitmapDimensionEx |
获取兼容位图的尺寸 |
_WinAPI_GetBkColor |
检索指定设备当前的背景颜色. |
_WinAPI_GetBkMode |
检索指定设备环境的当前背景混合模式 |
_WinAPI_GetBoundsRect |
Obtains the current accumulated bounding rectangle for a specified device context. |
_WinAPI_GetBufferedPaintBits |
Retrieves a pointer to the buffer bitmap if the buffer is a device-independent bitmap (DIB). |
_WinAPI_GetBufferedPaintDC |
Gets the paint device context (DC). |
_WinAPI_GetBufferedPaintTargetDC |
Retrieves the target device context (DC). |
_WinAPI_GetBufferedPaintTargetRect |
Retrieves the target rectangle. |
_WinAPI_GetBValue |
检索 32 位 RGB 值蓝色成分的亮度值. |
_WinAPI_GetCaretBlinkTime |
返回扫描插入符号像素所需的时间. |
_WinAPI_GetCaretPos |
检索插入符号的位置. |
_WinAPI_GetCDType |
Retrieves a type of the media which is loaded into a specified CD-ROM device. |
_WinAPI_GetClassInfoEx |
获取一个窗体类的信息 |
_WinAPI_GetClassLongEx |
检索指定窗口的给定值. |
_WinAPI_GetClassName |
检索指定窗口的类名称 |
_WinAPI_GetClientHeight |
返回窗口客户区高度 |
_WinAPI_GetClientRect |
检索窗口的客户区坐标 |
_WinAPI_GetClientWidth |
检索窗口的客户区宽度 |
_WinAPI_GetClipboardSequenceNumber |
Retrieves the clipboard sequence number for the current window station. |
_WinAPI_GetClipBox |
获取可见区域绑定矩形的大小 |
_WinAPI_GetClipCursor |
检索限制光标的屏幕矩形区域坐标. |
_WinAPI_GetClipRgn |
获取标识当前应用程序定义的剪切区域的句柄 |
_WinAPI_GetColorAdjustment |
Retrieves the color adjustment for the specified device context (DC). |
_WinAPI_GetCompressedFileSize |
Retrieves the actual number of bytes of disk storage used to store a specified file. |
_WinAPI_GetCompression |
检索文件或目录的当前压缩状态. |
_WinAPI_GetConnectedDlg |
启动连接向导,便于调用应用程序启用网络连接. |
_WinAPI_GetCurrentDirectory |
检索当前进程的当前目录. |
_WinAPI_GetCurrentHwProfile |
检索本地计算机当前硬件配置文件的信息. |
_WinAPI_GetCurrentObject |
Retrieves a handle to an object of the specified type that has been selected into the specified device context. |
_WinAPI_GetCurrentPosition |
Retrieves the current position for the specified device context. |
_WinAPI_GetCurrentProcess |
检索调用进程的进程句柄 |
_WinAPI_GetCurrentProcessExplicitAppUserModelID |
Retrieves the application-defined, explicit Application User Model ID for the current process. |
_WinAPI_GetCurrentProcessID |
检索调用进程的进程标识符 |
_WinAPI_GetCurrentThemeName |
检索当前视觉样式名称、配色方案名称、尺寸名称. |
_WinAPI_GetCurrentThread |
检索调用线程的伪句柄. |
_WinAPI_GetCurrentThreadId |
检索调用线程的线程标识符 |
_WinAPI_GetCursor |
检索当前光标句柄. |
_WinAPI_GetCursorInfo |
检索全局光标的信息 |
_WinAPI_GetDateFormat |
格式化指定区域的日期字符串. |
_WinAPI_GetDC |
检索显示客户区窗口的设备环境句柄 |
_WinAPI_GetDCEx |
获取指定窗体客户区域设备场景的句柄 |
_WinAPI_GetDefaultPrinter |
检索当前用户默认打印机的名称. |
_WinAPI_GetDefaultUserProfileDirectory |
Retrieves the path to the root of the default user's profile. |
_WinAPI_GetDesktopWindow |
返回 Windows 桌面窗口的句柄 |
_WinAPI_GetDeviceCaps |
检索指定设备的特定信息 |
_WinAPI_GetDeviceDriverBaseName |
检索指定设备驱动程序的基本名称. |
_WinAPI_GetDeviceDriverFileName |
检索指定设备驱动程序的有效路径. |
_WinAPI_GetDeviceGammaRamp |
Gets the gamma ramp on direct color display boards that support downloadable gamma ramps in hardware. |
_WinAPI_GetDIBColorTable |
从选定DIB部分位图的颜色获取RGB颜色表 |
_WinAPI_GetDIBits |
检索指定位图,并将它作为 DIB 拷贝到缓冲区 |
_WinAPI_GetDiskFreeSpaceEx |
检索磁盘可用空间信息. |
_WinAPI_GetDlgCtrlID |
检索指定控件的标识符 |
_WinAPI_GetDlgItem |
检索指定的对话框控件句柄 |
_WinAPI_GetDllDirectory |
Retrieves the application-specific portion of the search path used to locate DLLs for the application. |
_WinAPI_GetDriveBusType |
检索指定驱动器总线类型. |
_WinAPI_GetDriveGeometryEx |
检索磁盘的几何结构扩展信息. |
_WinAPI_GetDriveNumber |
检索指定驱动器的类型、编号、分区号. |
_WinAPI_GetDriveType |
检索磁盘驱动器类型(可移动、固定、光驱、RAM 磁盘或网络驱动器). |
_WinAPI_GetDurationFormat |
Formats a duration of time as a time string for a locale specified by identifier. |
_WinAPI_GetEnhMetaFile |
创建存储文件中指定的增强型图元文件句柄. |
_WinAPI_GetEnhMetaFileBits |
检索缓冲区内指定的增强型图元文件格式并复制它们的内容. |
_WinAPI_GetEnhMetaFileDescription |
检索增强型图元文件格式的可选文字说明. |
_WinAPI_GetEnhMetaFileDimension |
获取指定增强型元文件的尺寸 |
_WinAPI_GetEnhMetaFileHeader |
检索指定的增强型图元文件格式记录包含的标题. |
_WinAPI_GetErrorMessage |
检索指定系统错误代码的错误信息. |
_WinAPI_GetErrorMode |
获取当前进程的错误模式 |
_WinAPI_GetExitCodeProcess |
Retrieves the termination status of the specified process. |
_WinAPI_GetExtended |
Retrieves the last extended function return value. |
_WinAPI_GetFileAttributes |
检索指定文件或目录的文件系统属性. |
_WinAPI_GetFileID |
Retrieves the file system's 8-byte file reference number for a file. |
_WinAPI_GetFileInformationByHandle |
Retrieves file information for the specified file. |
_WinAPI_GetFilePointerEx |
Retrieves the file pointer of the specified file. |
_WinAPI_GetFileSizeEx |
检索指定文件的大小 |
_WinAPI_GetFileSizeOnDisk |
Retrieves the file allocation size on disk. |
_WinAPI_GetFileTitle |
获取指定文件的名称 |
_WinAPI_GetFileType |
Retrieves the file type of the specified file. |
_WinAPI_GetFileVersionInfo |
检索指定文件的版本信息. |
_WinAPI_GetFinalPathNameByHandle |
Retrieves the final path of the specified file. |
_WinAPI_GetFinalPathNameByHandleEx |
Retrieves the final path of the specified file. |
_WinAPI_GetFocus |
检索具有键盘焦点的窗口句柄 |
_WinAPI_GetFontResourceInfo |
检索指定字体资源文件的字体名称. |
_WinAPI_GetForegroundWindow |
返回前台窗口的句柄 |
_WinAPI_GetFRBuffer |
Retrieves the current size of the internal buffer that used the _WinAPI_FindTextDlg() and _WinAPI_ReplaceTextDlg() functions. |
_WinAPI_GetFullPathName |
Retrieves the full path and file name of the specified file. |
_WinAPI_GetGeoInfo |
Retrieves information about a specified geographical location. |
_WinAPI_GetGlyphOutline |
Retrieves the outline or bitmap for a character in the TrueType font. |
_WinAPI_GetGraphicsMode |
Retrieves the current graphics mode for the specified device context. |
_WinAPI_GetGuiResources |
返回指定进程所使用的 GUI 对象的句柄数 |
_WinAPI_GetGUIThreadInfo |
Retrieves information about the active window or a specified GUI thread. |
_WinAPI_GetGValue |
获取 32 位 RGB 值的绿色成分亮度值. |
_WinAPI_GetHandleInformation |
检索对象句柄的属性. |
_WinAPI_GetHGlobalFromStream |
活得一个流的全局内存句柄. |
_WinAPI_GetIconDimension |
获取指定图标的大小 |
_WinAPI_GetIconInfo |
检索指定图标或光标的信息 |
_WinAPI_GetIconInfoEx |
Retrieves information about the specified icon or cursor. |
_WinAPI_GetIdleTime |
检索自上次输入所用的时间. |
_WinAPI_GetKeyboardLayout |
检索指定窗口当前输入法区域标识符. |
_WinAPI_GetKeyboardLayoutList |
检索系统中当前设置的所有输入法标识符. |
_WinAPI_GetKeyboardState |
复制 256 个虚拟键的状态到指定缓冲区. |
_WinAPI_GetKeyboardType |
检索当前键盘信息. |
_WinAPI_GetKeyNameText |
检索键名称的字符串. |
_WinAPI_GetKeyState |
检索指定虚拟键的状态. |
_WinAPI_GetLastActivePopup |
Determines which pop-up window owned by the specified window was most recently active. |
_WinAPI_GetLastError |
返回调用线程产生的最后一个错误代码值. |
_WinAPI_GetLastErrorMessage |
返回调用线程产生的最后一个错误消息. |
_WinAPI_GetLayeredWindowAttributes |
获取分层窗口属性 |
_WinAPI_GetLocaleInfo |
检索区域设置标识符指定区域的信息. |
_WinAPI_GetLogicalDrives |
检索当前可用磁盘驱动器的掩码. |
_WinAPI_GetMapMode |
Retrieves the current mapping mode. |
_WinAPI_GetMemorySize |
Retrieves the size of a memory block allocated from the internal library heap. |
_WinAPI_GetMessageExtraInfo |
Retrieves the extra message information for the current thread. |
_WinAPI_GetModuleFileNameEx |
Retrieves the fully-qualified path for the file containing the specified module. |
_WinAPI_GetModuleHandle |
返回指定的模块句柄 |
_WinAPI_GetModuleHandleEx |
检索指定模块的句柄. |
_WinAPI_GetModuleInformation |
Retrieves information about the specified module. |
_WinAPI_GetMonitorInfo |
Retrieves information about a display monitor. |
_WinAPI_GetMousePos |
返回当前鼠标位置 |
_WinAPI_GetMousePosX |
返回当前鼠标的 X 位置 |
_WinAPI_GetMousePosY |
返回当前鼠标的 Y 位置 |
_WinAPI_GetNumberFormat |
Formats a number string as a number string customized for a locale specified by identifier. |
_WinAPI_GetObject |
检索指定图形对象的信息 |
_WinAPI_GetObjectID |
Retrieves the object identifier for the specified file or directory. |
_WinAPI_GetObjectInfoByHandle |
Retrieves information about a specified object. |
_WinAPI_GetObjectNameByHandle |
返回指定对象的名称 |
_WinAPI_GetObjectType |
检索指定对象的类型. |
_WinAPI_GetOpenFileName |
创建打开对话框,让用户能打开指定的驱动器,目录和文件的名称或设置文件为打开 |
_WinAPI_GetOutlineTextMetrics |
检索 TrueType 字体文本规格. |
_WinAPI_GetOverlappedResult |
检索重叠操作的结果 |
_WinAPI_GetParent |
返回一个指定的子窗口的父窗口的句柄 |
_WinAPI_GetParentProcess |
获取指定进程的父进程的标识 |
_WinAPI_GetPerformanceInfo |
检索系统性能信息. |
_WinAPI_GetPhysicallyInstalledSystemMemory |
Retrieves the amount of RAM that is physically installed on the computer. |
_WinAPI_GetPixel |
检索指定坐标的像素颜色值. |
_WinAPI_GetPolyFillMode |
获取当前多边形的填充模式 |
_WinAPI_GetPosFromRect |
解读矩形坐标的偏移量和位置坐标. |
_WinAPI_GetPriorityClass |
Retrieves the priority class for the specified process. |
_WinAPI_GetProcAddress |
返回指定动态链接库(DLL)中函数的地址. |
_WinAPI_GetProcessAffinityMask |
获取进程和系统的相似掩码 |
_WinAPI_GetProcessCommandLine |
检索指定进程的命令行字符串. |
_WinAPI_GetProcessFileName |
检索指定进程可执行文件的完整路径. |
_WinAPI_GetProcessHandleCount |
检索指定进程打开句柄的数量. |
_WinAPI_GetProcessID |
Retrieves the process identifier of the specified process. |
_WinAPI_GetProcessIoCounters |
检索指定进程所有执行 I/O 操作的统计信息. |
_WinAPI_GetProcessMemoryInfo |
检索指定进程的内存使用信息. |
_WinAPI_GetProcessName |
获取指定进程名称 |
_WinAPI_GetProcessShutdownParameters |
Retrieves the shutdown parameters for the currently calling process. |
_WinAPI_GetProcessTimes |
检索指定进程的计时信息. |
_WinAPI_GetProcessUser |
获取指定进程的用户名和域名 |
_WinAPI_GetProcessWindowStation |
Retrieves a handle to the current window station for the calling process. |
_WinAPI_GetProcessWorkingDirectory |
Retrieves the current working directory for the specified process. |
_WinAPI_GetProfilesDirectory |
Retrieves the path to the root directory where user profiles are stored. |
_WinAPI_GetPwrCapabilities |
Retrieves information about the system power capabilities. |
_WinAPI_GetRegionData |
以描述区域的数据填充指定缓冲区 |
_WinAPI_GetRegKeyNameByHandle |
Retrieves a name for the specified registry key. |
_WinAPI_GetRgnBox |
检索指定矩形区域的边界. |
_WinAPI_GetROP2 |
检索指定设备环境的前台混合操作模式. |
_WinAPI_GetRValue |
检索 32 位 RGB 值的红色成分的亮度值. |
_WinAPI_GetSaveFileName |
创建保存对话框,让用户保存文件到指定的驱动器,目录和文件名 |
_WinAPI_GetShellWindow |
Retrieves a handle to the Shell's desktop window. |
_WinAPI_GetStartupInfo |
Retrieves the contents of the STARTUPINFO structure that was specified when the calling process was created. |
_WinAPI_GetStdHandle |
检索标准输入,标准输出,或标准错误设备的句柄 |
_WinAPI_GetStockObject |
检索预定义的常用笔, 画笔, 字体, 或调色板的句柄 |
_WinAPI_GetStretchBltMode |
Retrieves the current stretching mode. |
_WinAPI_GetString |
Returns a string located at the specified memory address. |
_WinAPI_GetSysColor |
返回指定显示元素的当前颜色 |
_WinAPI_GetSysColorBrush |
检索对应指定颜色索引的逻辑笔刷的句柄 |
_WinAPI_GetSystemDefaultLangID |
Returns the language identifier for the system locale. |
_WinAPI_GetSystemDefaultLCID |
返回系统的区域设置标识符(LCID). |
_WinAPI_GetSystemDefaultUILanguage |
Retrieves the language identifier for the system default UI language of the operating system. |
_WinAPI_GetSystemDEPPolicy |
Gets the data execution prevention (DEP) policy setting for the system. |
_WinAPI_GetSystemInfo |
检索当前系统的信息. |
_WinAPI_GetSystemMetrics |
检索指定的系统度量或系统配置设置 |
_WinAPI_GetSystemPowerStatus |
检索系统的电源状态. |
_WinAPI_GetSystemTimes |
检索系统计时信息. |
_WinAPI_GetSystemWow64Directory |
检索 WOW64 使用的系统目录路径. |
_WinAPI_GetTempFileName |
创建临时文件的名称. |
_WinAPI_GetTextAlign |
检索指定设备环境文本对齐的设定值. |
_WinAPI_GetTextCharacterExtra |
Retrieves the current intercharacter spacing for the specified device context. |
_WinAPI_GetTextColor |
检索指定设备环境的当前文本颜色. |
_WinAPI_GetTextExtentPoint32 |
计算指定文本字符串的宽度和高度 |
_WinAPI_GetTextFace |
检索指定设备环境选定字体的名称. |
_WinAPI_GetTextMetrics |
返回当前选定字体的基本信息. |
_WinAPI_GetThemeAppProperties |
检索当前应用程序控制视觉样式的属性标志. |
_WinAPI_GetThemeBackgroundContentRect |
Retrieves the size of the content area for the background defined by the visual style. |
_WinAPI_GetThemeBackgroundExtent |
Calculates the size and location of the background, defined by the visual style, given the content area. |
_WinAPI_GetThemeBackgroundRegion |
Computes the region for a regular or partially transparent background that is bounded by a specified rectangle. |
_WinAPI_GetThemeBitmap |
Retrieves the bitmap associated with a particular theme, part, state, and property. |
_WinAPI_GetThemeBool |
Retrieves the value of a BOOL property from the SysMetrics section of theme data. |
_WinAPI_GetThemeColor |
检索指定窗口的颜色属性值. |
_WinAPI_GetThemeDocumentationProperty |
检索指定主题文件文档的属性值. |
_WinAPI_GetThemeEnumValue |
Retrieves the value of an enumerated type property. |
_WinAPI_GetThemeFilename |
Retrieves the value of a filename property. |
_WinAPI_GetThemeFont |
检索字体的属性值. |
_WinAPI_GetThemeInt |
检索 int 的属性值. |
_WinAPI_GetThemeMargins |
检索 MARGINS(页边空白) 的属性值. |
_WinAPI_GetThemeMetric |
Retrieves the value of a metric property. |
_WinAPI_GetThemePartSize |
计算视觉样式定义部件的原始大小. |
_WinAPI_GetThemePosition |
检索位置属性值. |
_WinAPI_GetThemePropertyOrigin |
Retrieves the location of the theme property definition for a property. |
_WinAPI_GetThemeRect |
检索 RECT(矩形) 的属性值. |
_WinAPI_GetThemeString |
Retrieves the value of a string property. |
_WinAPI_GetThemeSysBool |
Retrieves the Boolean value of a system metric. |
_WinAPI_GetThemeSysColor |
Retrieves the value of a system color. |
_WinAPI_GetThemeSysColorBrush |
Retrieves a system color brush. |
_WinAPI_GetThemeSysFont |
Retrieves the font information of a system font. |
_WinAPI_GetThemeSysInt |
Retrieves the value of a system INT. |
_WinAPI_GetThemeSysSize |
Retrieves the value of a system size metric from theme data. |
_WinAPI_GetThemeSysString |
Retrieves the value of a system string. |
_WinAPI_GetThemeTextExtent |
Calculates the size and location of the specified text when rendered in the visual style font. |
_WinAPI_GetThemeTextMetrics |
Retrieves information about the font specified by a visual style for a particular part. |
_WinAPI_GetThemeTransitionDuration |
Gets the duration for the specified transition. |
_WinAPI_GetThreadDesktop |
Retrieves a handle to the desktop assigned to the specified thread. |
_WinAPI_GetThreadErrorMode |
Retrieves the error mode for the calling thread. |
_WinAPI_GetThreadLocale |
Retrieves the locale identifier of the current locale for the calling thread. |
_WinAPI_GetThreadUILanguage |
Retrieves the language identifier of the first user interface language for the current thread. |
_WinAPI_GetTickCount |
检索系统已启动以来运行的毫秒数. |
_WinAPI_GetTickCount64 |
检索系统已启动以来运行的毫秒数. |
_WinAPI_GetTimeFormat |
格式化指定区域标识符的时间字符串. |
_WinAPI_GetTopWindow |
检索 Z 序顶部的子窗口句柄. |
_WinAPI_GetUDFColorMode |
检索 WinAPIEx UDF 库当前颜色模式. |
_WinAPI_GetUDFVersion |
检索 WinAPIEx UDF 库的最新版本. |
_WinAPI_GetUpdateRect |
检索指定窗口包围更新区域的矩形坐标. |
_WinAPI_GetUpdateRgn |
通过复制指定区域检索窗口的更新区域. |
_WinAPI_GetUserDefaultLangID |
Returns the language identifier for the current user locale. |
_WinAPI_GetUserDefaultLCID |
返回用户默认区域设置标识符(LCID). |
_WinAPI_GetUserDefaultUILanguage |
Returns the language identifier for the user UI language for the current user. |
_WinAPI_GetUserGeoID |
Retrieves information about the geographical location of the user. |
_WinAPI_GetUserObjectInformation |
Retrieves information about the specified window station or desktop object. |
_WinAPI_GetVersion |
获得当前操作系统的版本. |
_WinAPI_GetVersionEx |
检索当前操作系统信息. |
_WinAPI_GetVolumeInformation |
Retrieves information about the file system and volume associated with the specified root directory. |
_WinAPI_GetVolumeInformationByHandle |
Retrieves information about the file system and volume associated with the specified file. |
_WinAPI_GetVolumeNameForVolumeMountPoint |
检索指定装入点的卷 GUID 路径. |
_WinAPI_GetWindow |
检索与指定窗口有特定关系的窗口句柄 |
_WinAPI_GetWindowDC |
检索整个窗口的设备环境(DC) |
_WinAPI_GetWindowDisplayAffinity |
Retrieves the current display affinity setting, from any process, for a given window. |
_WinAPI_GetWindowExt |
Retrieves the x-extent and y-extent of the window for the specified device context. |
_WinAPI_GetWindowFileName |
检索指定窗口句柄关联模块的完整路径. |
_WinAPI_GetWindowHeight |
返回窗口高度. |
_WinAPI_GetWindowInfo |
检索指定窗口的信息,返回信息结构. |
_WinAPI_GetWindowLong |
检索指定窗口的信息 |
_WinAPI_GetWindowLongEx |
检索指定窗口的信息,返回请求的信息值. |
_WinAPI_GetWindowOrg |
Retrieves the x-coordinates and y-coordinates of the window origin for the specified device context. |
_WinAPI_GetWindowPlacement |
检索最小, 最大窗口与正常位置的布局 |
_WinAPI_GetWindowRect |
检索指定窗口矩形的尺寸 |
_WinAPI_GetWindowRgn |
获得窗口范围的副本 |
_WinAPI_GetWindowRgnBox |
Retrieves the dimensions of the tightest bounding rectangle for the window region of a window. |
_WinAPI_GetWindowSubclass |
Retrieves the reference data for the specified window subclass callback. |
_WinAPI_GetWindowText |
从指定窗口的标题栏返回一个文本. |
_WinAPI_GetWindowTheme |
Retrieves a theme handle to a window that has visual styles applied. |
_WinAPI_GetWindowThreadProcessId |
检索指定窗口创建的线程标识符 |
_WinAPI_GetWindowWidth |
获取窗体的宽度 |
_WinAPI_GetWorkArea |
检索主显示器工作区的大小. |
_WinAPI_GetWorldTransform |
Retrieves the current world-space to page-space transformation. |
_WinAPI_GetXYFromPoint |
从 $tagPOINT 结构返回 X/Y 值 |
_WinAPI_GlobalMemoryStatus |
检索当前可用内存的信息 |
_WinAPI_GradientFill |
渐变填充矩形或三角形. |
_WinAPI_GUIDFromString |
从字符串GUID转换为二进制GUID. |
_WinAPI_GUIDFromStringEx |
字符串转换为二进制形式的 GUID |
_WinAPI_HashData |
Hashes a memory block. |
_WinAPI_HashString |
Hashes a string. |
_WinAPI_Hex64 |
Converts an integer value into a string of its hexadecimal representation. |
_WinAPI_HiByte |
Returns the high BYTE of a 16-bit (2 bytes) value. |
_WinAPI_HideCaret |
移除屏幕插入符号.隐藏但不破坏插入符号目前形状或无效的插入点. |
_WinAPI_HiDWord |
返回 64 位(8字节)值的高位字值. |
_WinAPI_HiWord |
返回 longword 值的高字 |
_WinAPI_InflateRect |
增加或减少指定矩形的宽度和高度. |
_WinAPI_InProcess |
确定窗口是否属于当前进程 |
_WinAPI_IntersectClipRect |
从当前的剪切区部分和指定矩形创建新的剪切区域 |
_WinAPI_IntersectRect |
创造两个矩形的交集. |
_WinAPI_IntToDWord |
转换 INT 类型值为 DWORD 类型值. |
_WinAPI_IntToFloat |
返回一个4字节整数值为浮点值. |
_WinAPI_InvalidateRect |
添加矩形到指定窗口的更新区域 |
_WinAPI_InvalidateRgn |
增加区域到指定窗口的更新区域. |
_WinAPI_InvertANDBitmap |
通过NOT逻辑操作反转指定的逻辑AND掩码的位图 |
_WinAPI_InvertColor |
反转指定颜色 |
_WinAPI_InvertRect |
对每个像素颜色值执行逻辑 NOT 运算, 使窗口矩形反转. |
_WinAPI_InvertRgn |
反转指定区域的颜色. |
_WinAPI_IOCTL |
创建唯一的系统I/O控制代码(IOCTL) |
_WinAPI_IsAlphaBitmap |
确定指定位图是否具有alpha通道 |
_WinAPI_IsBadCodePtr |
Determines whether the calling process has read access to the memory at the specified address. |
_WinAPI_IsBadReadPtr |
Verifies that the calling process has read access to the specified range of memory. |
_WinAPI_IsBadStringPtr |
Verifies that the calling process has read access to the specified range of memory. |
_WinAPI_IsBadWritePtr |
Verifies that the calling process has write access to the specified range of memory. |
_WinAPI_IsChild |
测试窗口是否为指定父窗的子窗口. |
_WinAPI_IsClassName |
包装检查类控件的名称. |
_WinAPI_IsDoorOpen |
检查光驱托盘的开/关状态. |
_WinAPI_IsElevated |
Determines whether the current process is elevated. |
_WinAPI_IsHungAppWindow |
确定指定的应用程序是否没有响应. |
_WinAPI_IsIconic |
确定指定窗口是否最小化 |
_WinAPI_IsInternetConnected |
确定当前用户是否连接到互联网. |
_WinAPI_IsLoadKBLayout |
确定指定输入法区域设置是否加载到系统中. |
_WinAPI_IsMemory |
Determines whether the specified pointer points to the memory block in the internal library heap. |
_WinAPI_IsNetworkAlive |
确定本地系统的网络连接状态,并确定网络连接的类型. |
_WinAPI_IsProcessInJob |
确定进程是否运行在指定的作业对象中. |
_WinAPI_IsProcessorFeaturePresent |
确定当前计算机是否支持指定处理器的特点. |
_WinAPI_IsRectEmpty |
确定指定矩形是否为空. |
_WinAPI_IsThemeActive |
测试当前运行应用程序的可见状态. |
_WinAPI_IsThemeBackgroundPartiallyTransparent |
检索视觉样式指定的背景是否为透明或 alpha 混合. |
_WinAPI_IsThemePartDefined |
检索视觉样式是否为指定的部件参数定义的. |
_WinAPI_IsValidLocale |
确定操作系统安装或支持的指定区域. |
_WinAPI_IsWindow |
确定指定的窗口句柄是否标识现有窗口 |
_WinAPI_IsWindowEnabled |
确定指定窗口是否启用鼠标和键盘输入. |
_WinAPI_IsWindowUnicode |
确定指定窗口是否为本地 Unicode 窗口. |
_WinAPI_IsWindowVisible |
检索指定窗口的可见状态 |
_WinAPI_IsWow64Process |
确定指定的进程是否在 WOW64 下运行. |
_WinAPI_IsWritable |
确定磁盘是否可写磁盘. |
_WinAPI_IsZoomed |
确定窗口是否最大化. |
_WinAPI_Keybd_Event |
合成按键. |
_WinAPI_KillTimer |
销毁指定的计时器. |
_WinAPI_LineDDA |
确定直线上的高亮像素 |
_WinAPI_LineTo |
从当前位置绘制一条线, 但不包括指定点. |
_WinAPI_LoadBitmap |
加载指定模块可执行文件的位图资源 |
_WinAPI_LoadCursor |
加载可执行(.EXE)文件指定的光标资源. |
_WinAPI_LoadCursorFromFile |
创建基于文件数据的光标. |
_WinAPI_LoadIconWithScaleDown |
加载了图标并按比例缩减较大图像;而不是按比例放大小图像. |
_WinAPI_LoadImage |
载入一个图标,光标,或者位图. |
_WinAPI_LoadIndirectString |
Extracts the string from the specified resource when given an indirect string. |
_WinAPI_LoadKeyboardLayout |
加载新的输入法区域设置标识符到系统. |
_WinAPI_LoadLibrary |
映射指定的可执行模块到调用进程的地址空间 |
_WinAPI_LoadLibraryEx |
映射指定的可执行模块到调用进程的地址空间 |
_WinAPI_LoadMedia |
加载媒体到设备. |
_WinAPI_LoadResource |
加载指定资源到全局内存. |
_WinAPI_LoadShell32Icon |
提取 Shell32.dll 文件的图标 |
_WinAPI_LoadString |
加载指定模块关联的可执行文件字符串资源 |
_WinAPI_LoadStringEx |
Loads a string resource for the specified language from the specified module. |
_WinAPI_LoByte |
Returns the low BYTE of a 16-bit (2 bytes) value. |
_WinAPI_LocalFree |
是否指定的局部内存对象并销毁它的句柄 |
_WinAPI_LockDevice |
启用或禁用具有锁定功能的设备的弹出媒体机制. |
_WinAPI_LockFile |
锁定由调用进程独占访问指定的文件. |
_WinAPI_LockResource |
锁定内存中指定的资源. |
_WinAPI_LockWindowUpdate |
Disables or enables drawing in the specified window. |
_WinAPI_LockWorkStation |
锁定工作站的显示器. |
_WinAPI_LoDWord |
返回 64 位(8字节)值的低位双字(DWORD). |
_WinAPI_LongMid |
Extracts a number of bits from a DWORD (32-bit) value. |
_WinAPI_LookupIconIdFromDirectoryEx |
搜索适合当前显示设备的图标或光标的数据. |
_WinAPI_LoWord |
返回 longword 低位字 |
_WinAPI_LPtoDP |
Converts a logical coordinates into device coordinates. |
_WinAPI_MAKELANGID |
从主语言 ID 和子语言标识构建语言 ID |
_WinAPI_MAKELCID |
从语言ID和分类(排序)ID构造一个本地ID. |
_WinAPI_MakeLong |
从两个整数值(Int)返回一个长整值(LongInt). |
_WinAPI_MakeQWord |
从两个 int 值返回一个 QWORD 值. |
_WinAPI_MakeWord |
Returns a WORD (16-bit) value from two BYTE (8-bit) values. |
_WinAPI_MapViewOfFile |
映射文件映射视图到调用进程的地址空间. |
_WinAPI_MapVirtualKey |
Translates a virtual-key code into a scan code or character value, or translates a scan code into a virtual-key code. |
_WinAPI_MaskBlt |
对源位图和目标位图使用指定光栅和遮盖操作结合颜色数据 |
_WinAPI_MessageBeep |
播放波形声音 |
_WinAPI_MessageBoxCheck |
显示提供用户删除事件的选项消息框. |
_WinAPI_MessageBoxIndirect |
创建, 显示并操作消息框 |
_WinAPI_ModifyWorldTransform |
Changes the world transformation for a device context using the specified mode. |
_WinAPI_MonitorFromPoint |
Retrieves a handle to the display monitor that contains a specified point. |
_WinAPI_MonitorFromRect |
Retrieves a handle to the display monitor that has the largest area of intersection with a specified rectangle. |
_WinAPI_MonitorFromWindow |
Retrieves a handle to the display monitor that has the largest area of intersection with the specified window. |
_WinAPI_Mouse_Event |
综合鼠标运动轨迹与按键点击 |
_WinAPI_MoveFileEx |
移动文件或目录,通过回调函数通知应用程序的进展. |
_WinAPI_MoveMemory |
Moves a block of memory from one location to another. |
_WinAPI_MoveTo |
更新当前位置到指定点 |
_WinAPI_MoveToEx |
更新当前位置到指定点. |
_WinAPI_MoveWindow |
变化指定窗口的位置和尺寸 |
_WinAPI_MsgBox |
显示大于原始宽度的消息框 |
_WinAPI_MulDiv |
两个 32 位值相乘, 然后除以 64 位值所得的 32 位值 |
_WinAPI_MultiByteToWideChar |
映射字符串到宽字符(Unicode)字符串 |
_WinAPI_MultiByteToWideCharEx |
映射字符串到宽字符(Unicode)字符串 |
_WinAPI_NtStatusToDosError |
Converts the specified NTSTATUS code to its equivalent system error code. |
_WinAPI_OemToChar |
转换 OEM 定义的字符串为 ANSI 字符串. |
_WinAPI_OffsetClipRgn |
依据指定的偏移量移动设备环境剪辑区域. |
_WinAPI_OffsetPoints |
由指定的偏移值移动坐标数组的点. |
_WinAPI_OffsetRect |
依据指定的偏移量移动指定的矩形. |
_WinAPI_OffsetRgn |
依据指定的偏移量移动区域. |
_WinAPI_OffsetWindowOrg |
使用指定的水平和垂直偏移修改场景的窗口原点 |
_WinAPI_OpenDesktop |
Opens the specified desktop object. |
_WinAPI_OpenFileById |
Opens the file that matches the specified object identifier. |
_WinAPI_OpenFileMapping |
打开命名的文件映射对象. |
_WinAPI_OpenIcon |
还原最小化窗口到原来的大小和位置,并激活窗口. |
_WinAPI_OpenInputDesktop |
Opens the desktop that receives user input. |
_WinAPI_OpenJobObject |
打开现有的作业对象. |
_WinAPI_OpenMutex |
打开现有已命名的互斥对象 |
_WinAPI_OpenProcess |
返回一个现有进程对象的句柄. |
_WinAPI_OpenProcessToken |
打开与进程有关的访问令牌. |
_WinAPI_OpenSemaphore |
打开现有命名的信号量对象. |
_WinAPI_OpenThemeData |
打开了窗口的主题数据及其关联类. |
_WinAPI_OpenWindowStation |
Opens the specified window station. |
_WinAPI_PageSetupDlg |
Creates a Page Setup dialog box that enables the user to specify the attributes of a printed page. |
_WinAPI_PaintDesktop |
Fills the clipping region in the specified device context with the desktop pattern or wallpaper. |
_WinAPI_PaintRgn |
使用当前设备环境选择的画刷绘制指定区域. |
_WinAPI_ParseURL |
Performs rudimentary parsing of a URL. |
_WinAPI_ParseUserName |
Extracts the domain and user account name from a fully qualified user name. |
_WinAPI_PatBlt |
使用指定设备环境当前选定的画刷绘制指定的矩形. |
_WinAPI_PathAddBackslash |
在字符串结尾添加反斜杠以正确语法创建路径. |
_WinAPI_PathAddExtension |
向路径字符串添加文件扩展名 |
_WinAPI_PathAppend |
Appends one path to the end of another. |
_WinAPI_PathBuildRoot |
Creates a root path from a given drive number. |
_WinAPI_PathCanonicalize |
根据插入到该路径的特殊字符串的删除文件路径元素 |
_WinAPI_PathCommonPrefix |
比较两路径是否共享一个普通前缀 |
_WinAPI_PathCompactPath |
使用省略号截短文件路径,以符合特定的像素宽度. |
_WinAPI_PathCompactPathEx |
Truncates a path to fit within a certain number of characters by replacing path components with ellipses. |
_WinAPI_PathCreateFromUrl |
将文件URL转换为MSDOS路径 |
_WinAPI_PathFindExtension |
搜索扩展路径. |
_WinAPI_PathFindFileName |
搜索路径中的文件名. |
_WinAPI_PathFindNextComponent |
解析路径,并返回路径中第一个反斜杠后面的部分. |
_WinAPI_PathFindOnPath |
搜索默认系统路径文件 |
_WinAPI_PathGetArgs |
查找给定路径的命令行参数. |
_WinAPI_PathGetCharType |
确定路径相关的字符类型. |
_WinAPI_PathGetDriveNumber |
搜索 'A' 到 'Z' 范围内驱动符路径,并返回相应驱动器号. |
_WinAPI_PathIsContentType |
Determines if a file's registered content type matches the specified content type. |
_WinAPI_PathIsDirectory |
验证路径是一个有效的目录. |
_WinAPI_PathIsDirectoryEmpty |
确定指定路径是否为空目录. |
_WinAPI_PathIsExe |
检查文件扩展名确定是否为可执行文件. |
_WinAPI_PathIsFileSpec |
搜索路径的路径分隔符. |
_WinAPI_PathIsLFNFileSpec |
Determines whether a file name is in long format. |
_WinAPI_PathIsRelative |
搜索路径并确定它是相对路径. |
_WinAPI_PathIsRoot |
Parses a path to determine if it is a directory root. |
_WinAPI_PathIsSameRoot |
比较两条路径,以确定他们是否有共同的根组件. |
_WinAPI_PathIsSystemFolder |
Determines if an existing folder contains the attributes that make it a system folder. |
_WinAPI_PathIsUNC |
确定对于服务器和共享路径字符串是否为有效的通用命名约定(UNC) |
_WinAPI_PathIsUNCServer |
确定字符串仅对于服务器是否为有效的通用命名约定(UNC) |
_WinAPI_PathIsUNCServerShare |
确定字符串是否为有效的通用命名约定(UNC)共享路径 |
_WinAPI_PathMakeSystemFolder |
Gives an existing folder the proper attributes to become a system folder. |
_WinAPI_PathMatchSpec |
搜索匹配 MS-DOS 通配符的字符串. |
_WinAPI_PathParseIconLocation |
解析包含文件路径和图标索引的文件位置字符串 |
_WinAPI_PathRelativePathTo |
创建文件或文件夹的相对路径到另一个. |
_WinAPI_PathRemoveArgs |
移除给定路径的参数 |
_WinAPI_PathRemoveBackslash |
Removes the trailing backslash from a given path. |
_WinAPI_PathRemoveExtension |
Removes the file name extension from a path, if one is present. |
_WinAPI_PathRemoveFileSpec |
Removes the trailing file name and backslash from a path, if they are present. |
_WinAPI_PathRenameExtension |
替换文件的扩展名. |
_WinAPI_PathSearchAndQualify |
格式化路径为完整有效的路径. |
_WinAPI_PathSkipRoot |
Parses a path, ignoring the drive letter or Universal Naming Convention (UNC) server/share path elements. |
_WinAPI_PathStripPath |
Removes the path portion of a fully qualified path and file. |
_WinAPI_PathStripToRoot |
Removes all parts of the path except for the root information. |
_WinAPI_PathToRegion |
从选入设备场景的路径创建区域 |
_WinAPI_PathUndecorate |
Removes the decoration from a path string. |
_WinAPI_PathUnExpandEnvStrings |
替换文件夹所在完整有效路径名为相关的环境字符串. |
_WinAPI_PathUnmakeSystemFolder |
Removes the attributes from a folder that make it a system folder. |
_WinAPI_PathUnquoteSpaces |
移除路径开始和结尾的引号 |
_WinAPI_PathYetAnotherMakeUniqueName |
基于现有文件名创建唯一文件名. |
_WinAPI_PickIconDlg |
显示图标选择对话框. |
_WinAPI_PlayEnhMetaFile |
显示指定增强型图元文件中的图片. |
_WinAPI_PlaySound |
播放指定文件名、资源或系统事件的声音. |
_WinAPI_PlgBlt |
从源DC指定矩形向DC指定平行四边形传输色艳数据的数位块 |
_WinAPI_PointFromRect |
以 $tagPOINT 结构返回 $tagRECT 结构左上角的坐标 |
_WinAPI_PolyBezier |
绘制一或多个贝塞尔曲线. |
_WinAPI_PolyBezierTo |
绘制一或多个贝塞尔曲线. |
_WinAPI_PolyDraw |
绘制贝塞尔曲线的线段 |
_WinAPI_Polygon |
绘制多边形. |
_WinAPI_PostMessage |
将一个消息放入消息队列中并返回 |
_WinAPI_PrimaryLangId |
从语言ID中取出主语言ID |
_WinAPI_PrintDlg |
Displays a Print dialog box. |
_WinAPI_PrintDlgEx |
Displays a Print property sheet that enables the user to specify the properties of a particular print job. |
_WinAPI_PrintWindow |
将指定可见窗口复制到指定设备场景 |
_WinAPI_PtInRect |
确定指定点是否在指定矩形中 |
_WinAPI_PtInRectEx |
确定指定点是否在指定的矩形中. |
_WinAPI_PtInRegion |
确定指定点是否在指定区域内. |
_WinAPI_PtVisible |
确定指定点是否位于剪切区域内 |
_WinAPI_QueryDosDevice |
检索特定 MS - DOS 设备名称的当前映射. |
_WinAPI_QueryInformationJobObject |
检索作业对象的限制和作业状态信息. |
_WinAPI_QueryPerformanceCounter |
获取高精度性能计数器的当前值 |
_WinAPI_QueryPerformanceFrequency |
检索高分辨率性能计数器的频率. |
_WinAPI_RadialGradientFill |
径向渐变填充. |
_WinAPI_ReadDirectoryChanges |
Retrieves information that describes the changes within the specified directory. |
_WinAPI_ReadFile |
从一个文件读取数据 |
_WinAPI_ReadProcessMemory |
读取指定进程的内存 |
_WinAPI_Rectangle |
绘制矩形. |
_WinAPI_RectInRegion |
确定指定矩形的任意部分是否处于区域的边界内 |
_WinAPI_RectIsEmpty |
判断回收站是否为空. |
_WinAPI_RectVisible |
确定矩形的任意部分是否位于剪切区域内 |
_WinAPI_RedrawWindow |
更新指定矩形或窗口客户区域 |
_WinAPI_RegCloseKey |
关闭指定注册表项的句柄. |
_WinAPI_RegConnectRegistry |
在另一台计算机上创建一个预定义的注册表项联接. |
_WinAPI_RegCopyTree |
递归复制子项和子项的源值到目标键项. |
_WinAPI_RegCopyTreeEx |
复制指定的注册表项及其子项到指定的目标键. |
_WinAPI_RegCreateKey |
创建指定的注册表键. |
_WinAPI_RegDeleteEmptyKey |
删除一个空键. |
_WinAPI_RegDeleteKey |
删除一个子项及其值. |
_WinAPI_RegDeleteKeyValue |
删除指定的注册表键和子项中指定的值. |
_WinAPI_RegDeleteTree |
删除一个子项及其所有的子节点. |
_WinAPI_RegDeleteTreeEx |
循环删除指定键的子项和值. |
_WinAPI_RegDeleteValue |
删除指定注册表键的命名值. |
_WinAPI_RegDisableReflectionKey |
Disables registry reflection for the specified key. |
_WinAPI_RegDuplicateHKey |
复制注册表项的句柄. |
_WinAPI_RegEnableReflectionKey |
Restores registry reflection for the specified disabled key. |
_WinAPI_RegEnumKey |
枚举指定的并已打开的注册表键子项. |
_WinAPI_RegEnumValue |
枚举指定打开的注册表项值. |
_WinAPI_RegFlushKey |
写入指定打开的注册表键的所有属性到注册表. |
_WinAPI_RegisterApplicationRestart |
Registers the active instance of an application for restart. |
_WinAPI_RegisterClassEx |
注册窗体类 |
_WinAPI_RegisterHotKey |
定义一个系统范围的热键. |
_WinAPI_RegisterPowerSettingNotification |
Registers the application to receive power setting notifications for the specific power setting event. |
_WinAPI_RegisterShellHookWindow |
注册指定的 shell 窗口,以接收事件或通知消息. |
_WinAPI_RegisterWindowMessage |
定义新窗口消息, 保证在整个系统中是唯一的 |
_WinAPI_RegLoadMUIString |
加载指定项和子项中指定的字符串. |
_WinAPI_RegNotifyChangeKeyValue |
通知调用者改变指定注册表键的属性或内容 |
_WinAPI_RegOpenKey |
打开指定的注册表键 |
_WinAPI_RegQueryInfoKey |
检索指定注册表键的信息. |
_WinAPI_RegQueryLastWriteTime |
检索指定注册表项的最后写入时间. |
_WinAPI_RegQueryMultipleValues |
检索注册表键的类型和名称值列表数据. |
_WinAPI_RegQueryReflectionKey |
Determines whether reflection has been disabled or enabled for the specified key. |
_WinAPI_RegQueryValue |
检索注册表项指定值名称的类型和数据. |
_WinAPI_RegRestoreKey |
读取指定文件的注册表信息,并将其复制到指定键. |
_WinAPI_RegSaveKey |
以标准格式保存指定键及其子项和值到新文件. |
_WinAPI_RegSetValue |
设置下一个注册表项指定值的数据和类型. |
_WinAPI_ReleaseCapture |
释放当前线程中窗口的鼠标捕获, 并恢复正常的鼠标输入处理 |
_WinAPI_ReleaseDC |
释放设备环境 |
_WinAPI_ReleaseMutex |
释放指定互斥对象的宿主 |
_WinAPI_ReleaseSemaphore |
增加信号量对象指定数量的计数. |
_WinAPI_ReleaseStream |
释放流对象 |
_WinAPI_RemoveClipboardFormatListener |
Removes the given window from the system-maintained clipboard format listener list. |
_WinAPI_RemoveDirectory |
Deletes an existing empty directory. |
_WinAPI_RemoveFontMemResourceEx |
删除内存映像添加的字体. |
_WinAPI_RemoveFontResourceEx |
删除系统字体表中指定文件的字体. |
_WinAPI_RemoveWindowSubclass |
Removes a subclass callback from a window. |
_WinAPI_ReOpenFile |
使用不同的访问权限、共享模式、和标志重新打开指定的文件系统对象. |
_WinAPI_ReplaceFile |
替换文件为另一文件,并创建原始文件的备份副本. |
_WinAPI_ReplaceTextDlg |
Creates a system-defined modeless dialog box that lets the user specify a string to search for and a replacement string. |
_WinAPI_ResetEvent |
设置指定事件对象为无信号状态 |
_WinAPI_RestartDlg |
显示提示用户重新启动系统的对话框. |
_WinAPI_RestoreDC |
还原设备环境(DC)到指定的状态. |
_WinAPI_RGB |
创建 RGB 颜色值的红色,绿色,蓝色成分. |
_WinAPI_RotatePoints |
旋转数组指定的角度点. |
_WinAPI_RoundRect |
绘制圆角矩形. |
_WinAPI_SaveDC |
保存设备环境(DC)的当前状态. 将选定对象和图形模式的描述数据复制到环境堆栈. |
_WinAPI_SaveHBITMAPToFile |
Saves a specified bitmap to the specified bitmap (.bmp) file. |
_WinAPI_SaveHICONToFile |
将单个或多个(HICON)32位图标保存到指定图标文件 |
_WinAPI_ScaleWindowExt |
Modifies the window for a device context using the ratios formed by the specified multiplicands and divisors. |
_WinAPI_ScreenToClient |
转换屏幕指定点坐标到客户端屏幕坐标 |
_WinAPI_SelectClipPath |
选定当前路径作为剪切区域, 并与任意已存在的剪切区域结合为新区域 |
_WinAPI_SelectClipRgn |
选取区域作为当前设备场景的剪切区域 |
_WinAPI_SelectObject |
选择指定设备环境的对象 |
_WinAPI_SendMessageTimeout |
发送指定消息到其它窗口. |
_WinAPI_SetActiveWindow |
Activates the specified window. |
_WinAPI_SetArcDirection |
设置绘制弧的方向 |
_WinAPI_SetBitmapBits |
设置位图颜色数据的数位为指定值 |
_WinAPI_SetBitmapDimensionEx |
给兼容位图分配最佳的尺寸 |
_WinAPI_SetBkColor |
设置当前背景色为指定的颜色值 |
_WinAPI_SetBkMode |
设置指定设备环境的背景混合模式 |
_WinAPI_SetBoundsRect |
Controls the accumulation of bounding rectangle information for the specified device context. |
_WinAPI_SetCapture |
设置鼠标捕获当前线程指定的窗口 |
_WinAPI_SetCaretBlinkTime |
设置插入符得闪烁时间. |
_WinAPI_SetCaretPos |
移动插入符号到指定的坐标. |
_WinAPI_SetClassLongEx |
替换指定窗口的指定值. |
_WinAPI_SetColorAdjustment |
Sets the color adjustment for a device context (DC). |
_WinAPI_SetCompression |
设置文件或目录的压缩状态. |
_WinAPI_SetCurrentDirectory |
更改当前进程的当前目录. |
_WinAPI_SetCurrentProcessExplicitAppUserModelID |
Specifies a unique application-defined Application User Model ID that identifies the current process to the taskbar. |
_WinAPI_SetCursor |
建立光标形状 |
_WinAPI_SetDCBrushColor |
设置当前设备环境(DC)画刷颜色为指定的颜色值. |
_WinAPI_SetDCPenColor |
设置当前设备上下文(DC)的画笔颜色为指定的颜色值. |
_WinAPI_SetDefaultPrinter |
设置本地计算机当前用户的默认打印机 |
_WinAPI_SetDeviceGammaRamp |
Sets the gamma ramp on direct color display boards that support downloadable gamma ramps in hardware. |
_WinAPI_SetDIBColorTable |
Sets RGB color table in the DIB section bitmap. |
_WinAPI_SetDIBits |
Sets the pixels in a compatible bitmap using the color data found in a DIB |
_WinAPI_SetDIBitsToDevice |
设置设备场景中指定矩形内的像素 |
_WinAPI_SetDllDirectory |
Adds a directory to the search path used to locate DLLs for the application. |
_WinAPI_SetEndOfFile |
设置当前位置指针指定文件的物理文件大小 |
_WinAPI_SetEnhMetaFileBits |
创建指定内存数据的增强型图元文件格式. |
_WinAPI_SetErrorMode |
确定控制系统或进程是否处理指定类型的严重错误. |
_WinAPI_SetEvent |
设置指定事件对象的信号状态 |
_WinAPI_SetFileAttributes |
设置文件或目录的属性. |
_WinAPI_SetFilePointer |
移动指定文件的指针 |
_WinAPI_SetFilePointerEx |
移动指定文件的文件指针 |
_WinAPI_SetFileShortName |
Sets the short name for the specified file. |
_WinAPI_SetFocus |
设置键盘焦点到指定窗口 |
_WinAPI_SetFont |
设置窗口字体. |
_WinAPI_SetForegroundWindow |
将指定窗体放入前景并激活 |
_WinAPI_SetFRBuffer |
Sets the size of the internal buffer that used the _WinAPI_FindTextDlg() and _WinAPI_ReplaceTextDlg() functions. |
_WinAPI_SetGraphicsMode |
Sets the graphics mode for the specified device context. |
_WinAPI_SetHandleInformation |
设置对象句柄的特定特性 |
_WinAPI_SetInformationJobObject |
设置作业对象的限制. |
_WinAPI_SetKeyboardLayout |
加载新的输入标识到指定窗口 |
_WinAPI_SetKeyboardState |
将256个虚拟键的状态复制到调用进程的键盘输入状态表 |
_WinAPI_SetLastError |
给调用的线程设置错误码 |
_WinAPI_SetLayeredWindowAttributes |
设置分层窗口属性 |
_WinAPI_SetLocaleInfo |
设置当前用户部分的本地配置中项目的信息 |
_WinAPI_SetMapMode |
Sets the mapping mode of the specified device context. |
_WinAPI_SetMessageExtraInfo |
Sets the extra message information for the current thread. |
_WinAPI_SetParent |
修改子窗口的父窗口. |
_WinAPI_SetPixel |
设置指定坐标的像素为指定颜色. |
_WinAPI_SetPolyFillMode |
设置多边形填充模式 |
_WinAPI_SetPriorityClass |
Sets the priority class for the specified process. |
_WinAPI_SetProcessAffinityMask |
设置指定进程的线程处理器关联掩码 |
_WinAPI_SetProcessShutdownParameters |
Sets a shutdown order for a process relative to the other processes in the system. |
_WinAPI_SetProcessWindowStation |
Assigns the specified window station to the calling process. |
_WinAPI_SetRectRgn |
将一个区域转化到一个带有指定坐标的矩形区域内 |
_WinAPI_SetROP2 |
设置指定设备场景的前景混合模式 |
_WinAPI_SetStretchBltMode |
设置指定设备环境的位图拉伸模式. |
_WinAPI_SetSysColors |
获取系统显示设备的信息 |
_WinAPI_SetSystemCursor |
允许应用程序定制系统光标. |
_WinAPI_SetTextAlign |
设置指定设备环境的文本对齐标志. |
_WinAPI_SetTextCharacterExtra |
Sets the intercharacter spacing for the specified device context. |
_WinAPI_SetTextColor |
设置当前文本颜色为指定的颜色值 |
_WinAPI_SetTextJustification |
Specifies the amount of space the system should add to the break characters in a string of text. |
_WinAPI_SetThemeAppProperties |
设置如何在调用应用程序中实现视觉样式的标志. |
_WinAPI_SetThreadDesktop |
Assigns the specified desktop to the calling thread. |
_WinAPI_SetThreadErrorMode |
Controls whether the system will handle the specified types of serious errors or whether the calling thread will handle them. |
_WinAPI_SetThreadExecutionState |
Prevents the system from entering sleep or turning off the display while the current application is running. |
_WinAPI_SetThreadLocale |
Sets the current locale of the calling thread. |
_WinAPI_SetThreadUILanguage |
Sets the user interface language for the current thread. |
_WinAPI_SetTimer |
创建指定超时值的计时器. |
_WinAPI_SetUDFColorMode |
为 WinAPIEx 库设置颜色模式. |
_WinAPI_SetUserGeoID |
Sets the geographical location identifier for the user. |
_WinAPI_SetUserObjectInformation |
设置关于指定窗口站或桌面对象的信息 |
_WinAPI_SetVolumeMountPoint |
设置卷的驱动器号或另一个卷上的目录 |
_WinAPI_SetWindowDisplayAffinity |
以内核模式存储指定窗口的亲和力设置 |
_WinAPI_SetWindowExt |
使用指定值设置窗口对设备场景的水平和垂直扩展 |
_WinAPI_SetWindowLong |
设置指定窗口的指定信息 |
_WinAPI_SetWindowLongEx |
修改指定窗口的属性. |
_WinAPI_SetWindowOrg |
设置映射到视图原点的窗口点 |
_WinAPI_SetWindowPlacement |
设置窗口布局的最小值, 最大值, 和正常位置 |
_WinAPI_SetWindowPos |
变动子窗口, 弹出窗口, 或顶层窗口的大小, 位置和 Z 序 |
_WinAPI_SetWindowRgn |
设置窗口的窗口区域 |
_WinAPI_SetWindowsHookEx |
安装应用程序定义的钩子程序到钩链 |
_WinAPI_SetWindowSubclass |
安装或更新窗口子类回调 |
_WinAPI_SetWindowText |
更改指定窗口的标题栏文本 |
_WinAPI_SetWindowTheme |
设置窗口的视觉样式 |
_WinAPI_SetWinEventHook |
对一定范围的事件设置事件钩子程序 |
_WinAPI_SetWorldTransform |
设置世界空间和指定场景的页面空间之间的二维线性变换 |
_WinAPI_SfcIsFileProtected |
确定指定文件是否处于保护中 |
_WinAPI_SfcIsKeyProtected |
确定指定注册表是否处于保护 |
_WinAPI_ShellAddToRecentDocs |
添加文件到最近和经常使用的项目列表. |
_WinAPI_ShellChangeNotify |
通知系统应用程序已完成的事件. |
_WinAPI_ShellChangeNotifyDeregister |
注销客户端的窗口. |
_WinAPI_ShellChangeNotifyRegister |
注册接收文件系统或 Shell 通知的窗口. |
_WinAPI_ShellEmptyRecycleBin |
清空指定驱动器的回收站. |
_WinAPI_ShellExecute |
对指定文件执行操作 |
_WinAPI_ShellExtractAssociatedIcon |
返回指定文件关联的图标句柄. |
_WinAPI_ShellExtractIcon |
提取指定文件中指定尺寸的图标. |
_WinAPI_ShellFileOperation |
复制,移动,重命名或删除文件系统对象. |
_WinAPI_ShellGetFileInfo |
检索文件系统对象的信息. |
_WinAPI_ShellGetKnownFolderPath |
获取可识别的已知文件夹的完整路径 |
_WinAPI_ShellGetLocalizedName |
在SHELL文件夹中获取文件的本地化文件名 |
_WinAPI_ShellGetPathFromIDList |
转换项目标识符列表到文件系统路径. |
_WinAPI_ShellGetSetFolderCustomSettings |
设置或检索自定义文件夹. |
_WinAPI_ShellGetSettings |
检索处理程序(Shell)的状态设置. |
_WinAPI_ShellGetSpecialFolderLocation |
检索特殊文件夹的 PIDL 结构. |
_WinAPI_ShellGetSpecialFolderPath |
获取特殊文件夹的路径 |
_WinAPI_ShellGetStockIconInfo |
检索系统定义的 Shell 图标信息. |
_WinAPI_ShellILCreateFromPath |
创建路径指针,指向项目标识符列表 (PIDL). |
_WinAPI_ShellNotifyIcon |
发送消息到任务栏的状态区域. |
_WinAPI_ShellNotifyIconGetRect |
获取通知图标绑定矩形的屏幕坐标 |
_WinAPI_ShellObjectProperties |
调用 Shell 对象属性上下文菜单命令. |
_WinAPI_ShellOpenFolderAndSelectItems |
打开 Windows 资源管理器窗口中选定文件夹指定的特定项目. |
_WinAPI_ShellOpenWithDlg |
显示打开方式对话框. |
_WinAPI_ShellQueryRecycleBin |
检索指定驱动器回收站的大小及其项目数量. |
_WinAPI_ShellQueryUserNotificationState |
检查当前用户的计算机状态. |
_WinAPI_ShellRemoveLocalizedName |
移除Shell文件夹中文件的本地化名称 |
_WinAPI_ShellRestricted |
确定指定管理员限制是否生效 |
_WinAPI_ShellSetLocalizedName |
在SHELL文件夹中设置文件的本地化文件名 |
_WinAPI_ShellSetSettings |
置位处理程序(Shell)的状态设置. |
_WinAPI_ShellStartNetConnectionDlg |
对网络资源连接显示通用的浏览对话框 |
_WinAPI_ShellUserAuthenticationDlg |
Creates and displays a configurable dialog box that accepts credentials information from a user. |
_WinAPI_ShellUserAuthenticationDlgEx |
Creates and displays a configurable dialog box that accepts credentials information from a user. |
_WinAPI_ShowCaret |
显示屏幕插入符当前位置的插入符. |
_WinAPI_ShowCursor |
显示或隐藏光标 |
_WinAPI_ShowError |
显示一个带有可选退出的错误消息框 |
_WinAPI_ShowLastError |
显示最后一个错误代码和消息. |
_WinAPI_ShowMsg |
显示一个 "信息" 消息框 |
_WinAPI_ShowOwnedPopups |
显示或隐藏指定窗口拥有的所有弹出窗口. |
_WinAPI_ShowWindow |
设置指定窗口的显示状态 |
_WinAPI_ShutdownBlockReasonCreate |
表示系统无法关闭并设置字符串在执行系统关机时显示给用户以说明理由 |
_WinAPI_ShutdownBlockReasonDestroy |
系统将被关闭且释放原因字符串 |
_WinAPI_ShutdownBlockReasonQuery |
获取由_WinAPI_ShutdownBlockReasonCreate()函数创建的原因字符串 |
_WinAPI_SizeOfResource |
返回指定资源的字节大小 |
_WinAPI_StretchBlt |
复制源矩形位图到目标矩形,如有必要, |
_WinAPI_StretchDIBits |
将DIB, JPEG或PNG图像中的像素矩形的颜色数据复制到目标矩形. 如有必要使用指定的光栅操作拉伸或压缩行列 |
_WinAPI_StrFormatByteSize |
将数字值转换为以字节, 千字节, 兆字节或千兆字节表述的数字字符串 |
_WinAPI_StrFormatByteSizeEx |
将数值转化为按小数点左侧数位分组表达的数字 |
_WinAPI_StrFormatKBSize |
将数字值转换为以千字节表述的数字字符串 |
_WinAPI_StrFromTimeInterval |
将时间间隔转换为字符串 |
_WinAPI_StringFromGUID |
转换一个二进制 GUID 为字符串. |
_WinAPI_StringLenA |
Calculates the size of ANSI string |
_WinAPI_StringLenW |
Calculates the size of wide string |
_WinAPI_StrLen |
返回指定字符串长度 |
_WinAPI_StrokeAndFillPath |
关闭路径中打开的图形并绘制其轮廓填充其内部 |
_WinAPI_StrokePath |
使用当前画笔渲染指定路径 |
_WinAPI_StructToArray |
将数据结构转换为字符串数组 |
_WinAPI_SubLangId |
从语言ID中取出子语言ID. |
_WinAPI_SubtractRect |
计算矩形减去另一个矩形后,余下矩形的坐标. |
_WinAPI_SwapDWord |
互换 32 位值的高位和低位. |
_WinAPI_SwapQWord |
将ULONGLONG值从小尾数转为大尾数或反之 |
_WinAPI_SwapWord |
将USHORT值从小尾数转化为大尾数或反之. |
_WinAPI_SwitchColor |
转换 BGR 颜色为 RGB 颜色,或反之. |
_WinAPI_SwitchDesktop |
显示指定桌面并激活 |
_WinAPI_SwitchToThisWindow |
切换焦点到指定窗口,并将其置为前景窗口. |
_WinAPI_SystemParametersInfo |
检索或设置全系统(system-wide)参数的值 |
_WinAPI_TextOut |
使用当前选定字体,背景颜色和文字颜色写入字符串到指定位置. |
_WinAPI_TileWindows |
Tiles the specified child windows of the specified parent window. |
_WinAPI_TrackMouseEvent |
当鼠标指针离开窗体或在其上停留指定时长时发送消息 |
_WinAPI_TransparentBlt |
传输颜色数据位块到对应的矩形像素. |
_WinAPI_TwipsPerPixelX |
返回一个像素的宽度, 单位为缇(twips). |
_WinAPI_TwipsPerPixelY |
返回一个像素的高度, 单位为缇(twips). |
_WinAPI_UnhookWindowsHookEx |
移除一个钩子程序, 安装一个钩子链的 _WinAPI_SetWindowsHookEx 函数 |
_WinAPI_UnhookWinEvent |
移除事件钩子函数 |
_WinAPI_UnionRect |
创建两个矩形的并集. |
_WinAPI_UnionStruct |
创建两个结构的结构 |
_WinAPI_UniqueHardwareID |
生成本地计算机唯一硬件标识符(ID). |
_WinAPI_UnloadKeyboardLayout |
卸载一个输入区域设置标识符. |
_WinAPI_UnlockFile |
解锁打开文件的区域. |
_WinAPI_UnmapViewOfFile |
取消调用进程地址空间的文件映射视图. |
_WinAPI_UnregisterApplicationRestart |
获取为指定进程注册的重启信息 |
_WinAPI_UnregisterClass |
注销一个窗体类并释放类所需的内存 |
_WinAPI_UnregisterHotKey |
释放以前调用线程注册的热键. |
_WinAPI_UnregisterPowerSettingNotification |
注销电源设置通知 |
_WinAPI_UpdateLayeredWindow |
更新分层窗口的位置,大小,形状,内容和半透明度 |
_WinAPI_UpdateLayeredWindowEx |
更新分层窗口半透明位图. |
_WinAPI_UpdateResource |
添加,删除或替换可移植可执行(PE)文件资源. |
_WinAPI_UpdateWindow |
发送一个 WM_PAINT 消息到目标窗口,用于更新目标窗口客户区. |
_WinAPI_UrlApplyScheme |
Determines a scheme for a specified URL string, and returns a string with an appropriate prefix. |
_WinAPI_UrlCanonicalize |
Converts a URL string into canonical form. |
_WinAPI_UrlCombine |
Combines the base an relative URLs in canonical form. |
_WinAPI_UrlCompare |
Makes a case-sensitive comparison of two URL strings. |
_WinAPI_UrlCreateFromPath |
将Microsoft MS-DOS路径转换为规范URL |
_WinAPI_UrlFixup |
改正协议标识符不正确的URL |
_WinAPI_UrlGetPart |
从URL中获取指定部分 |
_WinAPI_UrlHash |
Hashes a URL string. |
_WinAPI_UrlIs |
测试URL是否为指定类型 |
_WinAPI_ValidateRect |
删除窗口当前更新区域的指定矩形. |
_WinAPI_ValidateRgn |
删除当前指定窗口的更新区域. |
_WinAPI_VerQueryRoot |
检索指定文件独立代码页的版本信息. |
_WinAPI_VerQueryValue |
Retrieves the non-fixed (strings) version information from the specified version-information resource. |
_WinAPI_VerQueryValueEx |
Retrieves the text information from the version-information resource of the specified binary module. |
_WinAPI_WaitForInputIdle |
等待, 直到进程等待用户输入之前挂起, 或超时 |
_WinAPI_WaitForMultipleObjects |
等待,直到一或多个指定对象中处于信号状态 |
_WinAPI_WaitForSingleObject |
等待, 直到指定的对象是在信号状态 |
_WinAPI_WideCharToMultiByte |
转换一个 Unicode 字符串到一个多字节字符串. |
_WinAPI_WidenPath |
当路径被销毁时重新定义当前选定的路径作为当前绘制的区域 |
_WinAPI_WindowFromDC |
检索指定显示设备环境(DC)关联的窗口句柄 (DC). |
_WinAPI_WindowFromPoint |
检索包含指定点的窗口句柄 |
_WinAPI_Wow64EnableWow64FsRedirection |
对调用的线程启用或禁用文件系统重定向 |
_WinAPI_WriteConsole |
写字符串到控制台屏幕缓冲区 |
_WinAPI_WriteFile |
写入数据到文件指定位置. |
_WinAPI_WriteProcessMemory |
写入数据到指定进程的内存 |
_WinAPI_ZeroMemory |
用0填充内存块 |
_WinHttpAddRequestHeaders |
添加一个或者多个 HTTP 请求头到 HTTP 请求句柄. |
_WinHttpBinaryConcat |
合并两个二进制模式下由 _WinHttpReadData() 函数返回的二进制数据. |
_WinHttpCheckPlatform |
确定当前平台是否支持当前版本的Microsoft Windows HTTP Services (WinHTTP) |
_WinHttpCloseHandle |
关闭一个HTTP句柄. |
_WinHttpConnect |
指定一个HTTP请求的初始目标服务器并返回一个指向初始服务器的HTTP会话连接句柄. |
_WinHttpCrackUrl |
将URL拆分为主机名和路径的部分 |
_WinHttpCreateUrl |
从一个包含主机名和路径等的数组创建一个URL地址. |
_WinHttpDetectAutoProxyConfigUrl |
查找代理自动设置(PAC)文件的URL |
_WinHttpGetDefaultProxyConfiguration |
获取默认WinHttp代理配置 |
_WinHttpGetIEProxyConfigForCurrentUser |
获取当前用户的 Internet Explorer 代理配置 |
_WinHttpOpen |
初始化 WinHttp 函数的使用并返回一个 WinHttp 会话句柄. |
_WinHttpOpenRequest |
创建一个HTTP请求句柄 |
_WinHttpQueryDataAvailable |
返回是否可由_WinHttpReadData()读取数据. |
_WinHttpQueryHeaders |
获取与HTTP请求相关的头部信息. |
_WinHttpQueryOption |
查询指定句柄的互联网选项. |
_WinHttpReadData |
从 _WinHttpOpenRequest() 函数打开的句柄读取数据 |
_WinHttpReceiveResponse |
等待接收由 WinHttpSendRequest() 函数初始化的HTTP请求的响应. |
_WinHttpSendRequest |
发送指定请求到HTTP服务器. |
_WinHttpSetCredentials |
传递需要的认证凭据给服务器. |
_WinHttpSetDefaultProxyConfiguration |
设置默认 WinHttp 代理配置. |
_WinHttpSetOption |
设置互联网选项 |
_WinHttpSetStatusCallback |
设置 WinHTTP 操作进度的回调函数. |
_WinHttpSetTimeouts |
设置 HTTP 传输超时时间. |
_WinHttpSimpleFormFill |
填写表单 |
_WinHttpSimpleReadData |
从一个请求中读取数据 |
_WinHttpSimpleReadDataAsync |
从 asynchronous 模式下的一个请求读取数据 |
_WinHttpSimpleRequest |
使用HTTP请求发送一个简单的表单 |
_WinHttpSimpleSendRequest |
使用HTTP请求发送一个简单的表单,但不读取数据 |
_WinHttpSimpleSendSSLRequest |
使用SSL请求发送一个简单的表单,但不读取数据 |
_WinHttpSimpleSSLRequest |
使用SSL请求发送一个简单的表单 |
_WinHttpTimeFromSystemTime |
根据 HTTP 版本 1.0 的协议格式化一个系统日期和时间. |
_WinHttpTimeToSystemTime |
转换 HTTP 时间/日期字符串化为一个数组(SYSTEMTIME数据结构). |
_WinHttpWriteData |
写入请求数据到一个HTTP服务器. |
_WinNet_AddConnection |
将本地设备连接到网络资源 |
_WinNet_AddConnection2 |
连接本地设备到网络资源 |
_WinNet_AddConnection3 |
连接本地设备到网络资源 |
_WinNet_CancelConnection |
取消一个存在的网络连接 |
_WinNet_CancelConnection2 |
取消一个存在的网络连接 |
_WinNet_CloseEnum |
结束由调用WNetOpenEnum启动的网络资源枚举 |
_WinNet_ConnectionDialog |
打开一个用以连接到网络资源的通用浏览对话框 |
_WinNet_ConnectionDialog1 |
启动普通浏览对话框,用于连接网络资源. |
_WinNet_DisconnectDialog |
断开网络资源时启动通用浏览对话框 |
_WinNet_DisconnectDialog1 |
断开网络资源时启动通用浏览对话框 |
_WinNet_EnumResource |
枚举网络资源 |
_WinNet_GetConnection |
获取与本地设备相关的网络资源名称 |
_WinNet_GetConnectionPerformance |
返回资源网络连接性能的信息 |
_WinNet_GetLastError |
返回最近返回的扩展错误 |
_WinNet_GetNetworkInformation |
返回指定网络提供者的扩展信息 |
_WinNet_GetProviderName |
获取指定类型网络的提供方名称 |
_WinNet_GetResourceInformation |
标识拥有资源的网络提供方 |
_WinNet_GetResourceParent |
返回网络浏览资源的父层次 |
_WinNet_GetUniversalName |
转换驱动路径到通用格式 |
_WinNet_GetUser |
检索默认用户名或用户名,用于建立一个连接 |
_WinNet_OpenEnum |
启动对网络资源或存在的连接进行枚举的过程 |
_WinNet_RestoreConnection |
还原网络资源的连接 |
_WinNet_UseConnection |
连接本地设备到网络资源 |
_WordAttach |
使用选择的模式并使用字符串匹配的方法尝试附加到第一个存在的Microsoft Word实例(instance) |
_WordCreate |
创建一个 Microsoft Office Word 对象 |
_WordDocAdd |
返回代表一个空白的新文件的对象变量 |
_WordDocAddLink |
向文件添加超级链接 |
_WordDocAddPicture |
向文件中添加一个图片 |
_WordDocClose |
关闭一个上次打开的 word 文档 |
_WordDocFindReplace |
运行指定的查找替换操作. |
_WordDocGetCollection |
返回包含所有文件的集合的对象 |
_WordDocLinkGetCollection |
返回文档中全部链接对象的集合 |
_WordDocOpen |
打开一个已存在的 Microsoft Word 文档文件 |
_WordDocPrint |
打印指定文档的全部或者一部分. |
_WordDocPropertyGet |
返回Word文档的某个属性 |
_WordDocPropertySet |
设置 Word 文档的属性 |
_WordDocSave |
保存一个已经打开的文档. |
_WordDocSaveAs |
保存指定的文档为一个新名称或者其它格式. |
_WordErrorHandlerDeRegister |
禁用注册的用户 COM 错误处理程序 |
_WordErrorHandlerRegister |
注册并启用用户 COM 错误处理程序 |
_WordErrorNotify |
指定是否 Word.au3 自动通知警告和错误 (在控制台) |
_WordMacroRun |
运行 Visual Basic 宏 |
_WordPropertyGet |
返回 Word 应用程序选定的属性. |
_WordPropertySet |
设置 Word 应用程序的一个选择属性. |
_WordQuit |
关闭窗体并移除其涉及的Word对象 |
_Word_VersionInfo |
返回一个关于 Word.au3 版本相关信息的数组 |