码迷,mamicode.com
首页 > 编程语言 > 详细

VBA

时间:2018-07-29 14:18:42      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:form   screen   net   shape   line   each   border   ntb   sub   

 

 

  1. 调整图片亮度:
    Sub 调整全部图片亮度()
    ‘
    ‘ 调整全部图片亮度 宏
    ‘
    ‘
     Application.ScreenUpdating = False
         Dim a As Integer
         Dim pic As InlineShape
         Dim aBorder As Border
         a = ActiveDocument.InlineShapes.Count
         If a = 0 Then
             MsgBox ("没有发现嵌入式图片")
         End If
         For Each pic In ActiveDocument.InlineShapes
             pic.PictureFormat.IncrementBrightness -0.05  ‘降亮度
         Next
         Application.ScreenUpdating = True
    End Sub
    

      

 

VBA

标签:form   screen   net   shape   line   each   border   ntb   sub   

原文地址:https://www.cnblogs.com/q1104460935/p/9385018.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!