文章分类 - 软件手册
摘要:1 Document >> IndentInsert 插入文本,并保持和第一行相同的缩进 原型: void IndentInsert(string strText); 1.1 参数 strText [in] string类型, 待插入的文本,\n表示换行 1.2 返回值 void:无 1.3 版本
阅读全文
摘要:1 Document >> HasSel 检查当前文档是否存在普通选区 原型: bool HasSel(); 1.1 参数 ***[in] *** 无 1.2 返回值 bool:true/false,是否存在普通选区 1.3 版本 EverEdit 4.5.0(4500)及之后版本。 1.4 备注
阅读全文
摘要:1 Document >> GhostTyping 幽灵打印 原型: void GhostTyping(string text, int speed=100); 1.1 参数 text [in] string类型,待打印的文字 speed=100 [in] int类型,插入文字间隔,单位毫秒 1.2
阅读全文
摘要:1 Document >> GetWrapCount 获取自动换行的子行数 原型: int GetWrapCount(int); 1.1 参数 int [in]类型,行数,起始值0 1.2 返回值 int:子行数 1.3 版本 EverEdit 4.5.0(4500)及之后版本。 1.4 备注 1.
阅读全文
摘要:1 Document >> GetWord 获取光标位置的单词 原型: string GetWord(int flag); 1.1 参数 flag [in] int类型,单词获取方法 参数说明: #define GETWORD_LWORD 1 #define GETWORD_RWORD 2 #def
阅读全文
摘要:1 Document >> GetLineTooltip 获取指定行的错误提示 原型: string GetLineTooltip(int line); 1.1 参数 line [in] int类型, 行号 1.2 返回值 string:指定行的错误提示 1.3 版本 EverEdit 4.5.0(
阅读全文
摘要:1 Document >> GetLineText 获取指定行文本 原型: string GetLineText(int); 1.1 参数 int [in]类型,行号,起始值0 1.2 返回值 string:指定行的文本 1.3 版本 EverEdit 4.5.0(4500)及之后版本。 1.4 备
阅读全文
摘要:1 Document >> GetLineLength 获取指定行的文字长度 原型: int GetLineLength(int); 1.1 参数 int [in]类型,行号,起始值0 1.2 返回值 int:文字长度 1.3 版本 EverEdit 4.5.0(4500)及之后版本。 1.4 备注
阅读全文
摘要:1 Document >> GetLineImage 获取指定行的图标序号 原型: int GetLineImage(int line); 1.1 参数 line [in] int类型, 指定行数,0起始 1.2 返回值 int:图标序号,1起始 1.3 版本 EverEdit 4.5.0(4500
阅读全文
摘要:1 Document >> GetHwnd 获取文档窗口句柄 原型: long GetHwnd(); 1.1 参数 ***[in] *** 无 1.2 返回值 long:句柄 1.3 版本 EverEdit 4.5.0(4500)及之后版本。 1.4 备注 1.5 使用样例 var doc = Ap
阅读全文
摘要:1 Document >> FindNext 查找下一处文字 原型: bool FindNext(string strFind); 1.1 参数 strFind [in] string类型,查找文字 1.2 返回值 bool:是否成功找到下一处文字 1.3 版本 EverEdit 4.5.0(450
阅读全文
摘要:1 Document >> FindNext 查找下一处文字 原型: bool FindNext(string strFind, bool bCase); 1.1 参数 strFind [in] string类型,查找文字 bCase [in] bool类型,大小写敏感 1.2 返回值 bool:是
阅读全文
摘要:1 Document >> FindNext 查找下一处文字 原型: bool FindNext(string strFind, bool bCase, bool bRegex); 1.1 参数 strFind [in] string类型,查找文字 bCase [in] bool类型,大小写敏感 b
阅读全文
摘要:1 Document >> FindNext 查找下一处文字 原型: bool FindNext(string strFind, bool bCase, bool bRegex, bool bWord); 1.1 参数 strFind [in] string类型,查找文字 bCase [in] bo
阅读全文
摘要:1 Document >> FindAll 查找所有匹配的字符串,并输出到“输出窗口” 原型: int FindAll(string strFind); 1.1 参数 strFind [in] string类型,查找文字 1.2 返回值 int:匹配数量统计,返回找到多少处 1.3 版本 EverE
阅读全文
摘要:1 Document >> FindAll 查找所有匹配的字符串,并输出到“输出窗口” 原型: int FindAll(string strFind, bool bCase); 1.1 参数 strFind [in] string类型,查找文字 bCase [in] bool类型,大小写敏感 1.2
阅读全文
摘要:1 Document >> FindAll 查找所有匹配的字符串,并输出到“输出窗口” 原型: int FindAll(string strFind, bool bCase, bool bRegex); 1.1 参数 strFind [in] string类型,查找文字 bCase [in] boo
阅读全文
摘要:1 Document >> FindAll 查找所有匹配的字符串,并输出到“输出窗口” 原型: int FindAll(string strFind, bool bCase, bool bRegex, bool bWord); 1.1 参数 strFind [in] string类型,查找文字 bC
阅读全文
摘要:1 Document >> ExportTo 导出文档内容到指定文件 原型: bool ExportTo(string strPathName); 1.1 参数 strPathName [in] string类型, 文件全路径名 1.2 返回值 bool:保存是否成功 1.3 版本 EverEdit
阅读全文
摘要:1 Document >> ExportTo 导出文档内容到指定文件 原型: bool ExportTo(string strPathName, int nEncoding, bool bAddBom); 1.1 参数 strPathName [in] string类型, 文件全路径 nEncodi
阅读全文