用宏批量调整word中图片版式大小方向_第1页
用宏批量调整word中图片版式大小方向_第2页
用宏批量调整word中图片版式大小方向_第3页
用宏批量调整word中图片版式大小方向_第4页
免费预览已结束,剩余1页可下载查看

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、Sub图片方向()Sub图片对齐()Applicati on .Scree nU pdat ing = False 关闭屏幕更新Dim nOn Error Resume NextActiveDocume nt.Shapes( n).Selectoriz on talPositi on = _wdRelativeHoriz on talPositi onM arginwdRelativeVerticalPositi onMarginNextApplication.ScreenUpdating = True 恢复屏幕更新End SubSub图片大小()On Error Resume NextDim

2、 mywidthDim myheightApplicati on .Scree nU pdat ing = False 关闭屏幕更新,宽度根据,高度根据mywidth = Val(InputBox(Prompt:=单位为厘米(cm);如果输入为 0,则图片保持原始纵横比输入的高度数值自动调整;, Title:=请输入图片宽度, Default:=0) * 28.35myheight = Val(InputBox(Prompt:=单位为厘米(cm);如果输入为 0,则图片保持原始纵横比输入的宽度数值自动调整;, Title:=请输入图片高度, Default:=0) * 28.35调整嵌入式图形

3、Dim pic As In li neShapeFor Each pic In ActiveDocume nt. In li neShapesIf mywidth = 0 Thenpic.Height = myheight pic.ScaleWidth = pic.ScaleHeightElseIf myheight = 0 Then pic.Width = mywidth pic.ScaleHeight = pic.ScaleWidthElse pic.Width = mywidth pic.Height = myheightEnd IfNext 调整浮动式图形 Dim tu As Shap

4、eFor Each tu In ActiveDocument.ShapesIf mywidth = 0 Then tu.Height = myheightElseIf myheight = 0 Then tu.Width = mywidthElse tu.LockAspectRatio = msoFalse tu.Width = mywidth tu.Height = myheightEnd IfNextApplication.ScreenUpdating = True 恢复屏幕更新End SubSub 浮于文字上方 ()Dim oShape As Variant, tu As Shape,

5、iApplication.ScreenUpdating = False 关闭屏幕更新 On Error Resume Next调整嵌入图形为浮于文字上方,并旋转90 度For Each oShape In ActiveDocument.InlineShapes Set oShape = oShape.ConvertToShape ActiveDocument.InlineShapes(i).SelectWith oShape.WrapFormat.Type = 3 (去除 .Zorder 行 .WrapFormat .Type = shapeType 四周 形 .WrapFormat.Type

6、 = wdWrapTight 紧密形 改为 .ConvertToInlineShape 嵌入形 ).ZOrder 4 4浮于文字上方 5 衬于下方.Rotation = -90#End WithNext调整其它图形为浮于文字上方,并旋转90 度For Each tu In ActiveDocument.ShapesActiveDocument.Shapes(i).SelectWith tu.WrapFormat.Type = 3 ( 去除 .Zorder 行 .WrapFormat .Type = shapeType 四周 形 .WrapFormat.Type = wdWrapTight 紧密

7、形 改为 .ConvertToInlineShape 嵌入形 ).ZOrder 4 4浮于文字上方 5 衬于下方.Rotation = -90#End WithNextApplication.ScreenUpdating = True 恢复屏幕更新End SubSub 浮于文字上方 ()Dim oShape As Variant, iApplication.ScreenUpdating = False 关闭屏幕更新On Error Resume NextFor Each oShape In ActiveDocument.InlineShapesSet oShape = oShape.Conve

8、rtToShapeActiveDocument.InlineShapes(i).Select 选中图片With oShape.ZOrder 4选中图片版式调为浮于文字上方.Rotation = -90#选中图片向左旋转 90 度End WithNextApplication.ScreenUpdating = True 关闭屏幕更新End SubSub 连续 ()Call 浮于文字上方Call 图片大小Call 图片对齐End SubSub 版式转换 ()Dim oShape As Variant, shapeType As WdWrapTypeOn Error Resume NextIf Ms

9、gBox(Y 将图片由嵌入式转为浮动式 ,N 将图片由浮动式转为嵌入式 , 68) = 6 Then shapeType = Val(InputBox(Prompt:= 请输入图片版式 :0=四周型 ,1=紧密型 , & vbLf & _ 3=衬于文字下方 ,4=浮于文字上方 , Default:=0)For Each oShape In ActiveDocument.InlineShapesSet oShape = oShape.ConvertToShapeWith oShapeSelect Case shapeTypeCase 0, 1.WrapFormat.Type = shapeTypeCase 3.WrapFormat.Type = 3.ZOrder 5Case 4.WrapFormat.Type = 3.ZOrder 4Case ElseExit SubEnd Select.WrapFormat.AllowOverlap = FalseEnd WithNextElseFor Each oShape In ActiveDocu

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论