利用UltraEdit的脚本功能清理服务器日志(3)

输出窗口对象命令

outputWindow是 JavaScript 阵列对象,阵列对象是 UltraEdit 应用程序对象的属性。 除非注明其他参数,否则所有输出窗口对象命令都必须使用下列格式调用:

UltraEdit.outputWindow.commandName();

下表说明了输出窗口对象命令:

命令

 

参数*

 

说明

 

clear

 

清除输出窗口内容。例如:

UltraEdit.outputWindow.clear();

 

copy

 

复制输出窗口的内容到活动剪贴板。例如:

UltraEdit.outputWindow.copy();

 

showOutput

 

布尔值 true/false

 

确定是否显示写入输出窗口中的针对用户数据。 现在只包含 outputWindow.write()。例如:

UltraEdit.outputWindow.showOutput=false;

 

showStatus

 

布尔值 true/false

 

确定是否在输出窗口中显示所有状态信息(脚本名称、脚本成功/失败和错误信息)。例如:

UltraEdit.outputWindow.showStatus=true;

 

showWindow

 

布尔值 true/false

 

切换输出窗口是否可见。例如:

UltraEdit.outputWindow.showWindow(true);

 

visible

 

** 这是只读属性。

 

返回布尔值表示输出窗口是否可见。例如:

UltraEdit.outputWindow.visible;

 

write

 

写入的文本位于引号 ("") 中

 

向输出窗口中写入指定的文本。 这将每次仅支持一行且不包含行终止符。例如:

UltraEdit.outputWindow.write("This is a test.");

 

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/17f1c3631fa31c594e5ffd35af1934a3.html