📄 btable.wsf
字号:
<?xml version="1.0" ?>
<job>
<reference object="Word.Document"/>
<!--comment
Build a simple table and fill in some cells
-->
<script language="VBScript">
<![CDATA[
Dim nF, nI, objWord, objWordDoc
On Error Resume Next
Set objWord = CreateObject("Word.Application")
objWord.Visible = True
With objWord
'create a new document
.Documents.Add
.ActiveDocument.Tables.Add .Selection.Range, 2, 3
End With
Set objWord = Nothing
Set objFSO = Nothing
]]>
</script>
</job>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -