在VBA编辑器中,你可以创建、编辑和运行VBA宏代码,以实现自动化任务和自定义Word 功能。如果你是VBA编程初学者,可以在VBA编辑器中查看Word VBA宏代码示例,以便更好地了解如何使用VBA编写代码。
要打开VBA编辑器,你可以按照以下步骤:
- 文件-选项-自定义功能区-开发工具打上对钩-确定。
-
开发工具-visual basic
-
插入-模块
- 在其中粘贴以下内容:
python
Sub FormatPics()
Dim Shap As InlineShape
For Each Shap In ActiveDocument.InlineShapes
If Shap.Type = wdInlineShapePicture Then
Shap.LockAspectRatio = msoTrue '锁定纵横比
Shap.Width = CentimetersToPoints(16) '宽16CM
End If
Next
End Sub
也可以不锁定纵横比:
python
Sub FormatPics
Dim Shap As InlineShape
For Each Shap In ActiveDocument.InlineShapes
If Shap.Type = wdInlineShapePicture Then
Shap.LockAspectRatio = msoFalse '不锁定纵横比
Shap.Width = CentimetersToPoints(10) '宽10CM
Shap.Height = CentimetersToPoints(7) '高7CM
End If
Next
End Sub
- 然后点击运行即可