📄 p690_helloworld.js
字号:
var doc = WScript.CreateObject("Word.Application");
doc.Visible = true;
doc.Documents.Add();
with(doc.ActiveDocument.Shapes)
{
AddTextEffect(21, "Hello, World!", "Arial Black",
36, false, false, 200, 150);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -