ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 214|回复: 2

PictureFormat.CropTop ,CropLeft,CropRight,CropBottom

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-8-16 17:23 | 显示全部楼层 |阅读模式
本帖最后由 ning84 于 2024-8-18 08:48 编辑

file:///C:/Users/Administrator.PC-202201142014/AppData/Local/Microsoft/Windows/Temporary%20Internet%20Files/MsOfficeHelp12/MOH711.tmp/help.gif
PictureFormat.CropTop 属性帮助 > PowerPoint 对象模型参考 > PictureFormat 对象 > 属性


file:///C:/Users/Administrator.PC-202201142014/AppData/Local/Microsoft/Windows/Temporary%20Internet%20Files/MsOfficeHelp12/MOH711.tmp/help.gif
PictureFormat 对象成员帮助 > PowerPoint 对象模型参考 > PictureFormat 对象


file:///C:/Users/Administrator.PC-202201142014/AppData/Local/Microsoft/Windows/Temporary%20Internet%20Files/MsOfficeHelp12/MOH711.tmp/help.gif
PictureFormat.CropLeft 属性帮助 > PowerPoint 对象模型参考 > PictureFormat 对象 > 属性


file:///C:/Users/Administrator.PC-202201142014/AppData/Local/Microsoft/Windows/Temporary%20Internet%20Files/MsOfficeHelp12/MOH711.tmp/help.gif
PictureFormat.CropRight 属性帮助 > PowerPoint 对象模型参考 > PictureFormat 对象 > 属性


file:///C:/Users/Administrator.PC-202201142014/AppData/Local/Microsoft/Windows/Temporary%20Internet%20Files/MsOfficeHelp12/MOH711.tmp/help.gif
PictureFormat.CropBottom 属性帮助 >

返回或设置从指定图片或 OLE 对象的顶部裁剪下的磅值。可读/写 Single 类型。裁剪以相对于图片的原始尺寸计算。例如,如果插入的图片原始高度为 100 磅,将其高度调整为 200 磅,再将 CropTop 属性设置为 50,则会从图片顶部裁剪 100 磅(而不是 50 镑)。
语法
表达式.CropTop
表达式   一个代表 PictureFormat 对象的变量。
返回值
Single
示例

本示例在 myDocument 中第三个形状的顶部裁剪了 20 磅。要使本示例执行,第三个形状必须是图片或 OLE 对象。
Visual Basic for Applications
Set myDocument = ActivePresentation.Slides(1)myDocument.Shapes(3).PictureFormat.CropTop = 20

本示例将选定形状的顶部裁剪用户指定的百分比,而不考虑该形状是否调整过。要使本示例执行,选定的形状必须是图片或 OLE 对象。
Visual Basic for Applications
percentToCrop = InputBox("What percentage do you " & _    "want to crop off the top of this picture?")Set shapeToCrop = ActiveWindow.Selection.ShapeRange(1)With shapeToCrop.Duplicate    .ScaleHeight 1, True    origHeight = .Height    .DeleteEnd WithcropPoints = origHeight * percentToCrop / 100shapeToCrop.PictureFormat.CropTop = cropPoints


  1. Sub lll()
  2.     Dim ShpRng As ShapeRange
  3.         Set ShpRng = Application.ActiveWindow.Selection.ShapeRange
  4.            With ShpRng
  5.                Debug.Print .Left, .Top, .Width, .Height
  6.                Debug.Print .Top
  7.                .PictureFormat.CropTop = 290
  8.                .PictureFormat.CropBottom = 700
  9.                Stop
  10.                Stop
  11.            End With
  12. End Sub
复制代码






  1. '''
  2. Sub SelectFolderMapToRng()
  3.    Dim Rng As Range, Kk
  4.        Set Rng = Selection
  5.    Dim Fso As FileSystemObject, oFile As File
  6.        Set Fso = New FileSystemObject
  7.    Dim oFolder As Folder
  8.    Dim Ff As FileDialog
  9.    Set Ff = Application.FileDialog(msoFileDialogFolderPicker)
  10.    With Ff
  11.       .Title = ""
  12.       .AllowMultiSelect = True
  13.       .InitialFileName = "F:"
  14.       .Show
  15.       Set oFolder = Fso.GetFolder(.SelectedItems(1))
  16.       
  17.    End With
  18.    Kk = 1
  19.    For Each oFile In oFolder.Files
  20.         Rng(Kk, 1) = oFile.Name
  21.         Rng(Kk, 2) = oFile.Path
  22.         Kk = Kk + 1
  23.    Next oFile
  24.    
  25.    
  26. End Sub

复制代码



  1. Sub ll()
  2.    Dim Sld As Slide, Slds As Slides
  3.        Set Slds = Application.ActivePresentation.Slides
  4.    Dim Shp As Shape
  5.        For Each Sld In Slds
  6.             Set Shp = Sld.Shapes(Sld.Shapes.Count)
  7.             Debug.Print Shp.Name
  8.        Next Sld
  9. End Sub
复制代码




  1. Sub SelectRngToPptMap()
  2.      Dim Fso As FileSystemObject
  3.          Set Fso = New FileSystemObject
  4.      Dim Img As WIA.ImageFile
  5.          Set Img = New WIA.ImageFile
  6.      Dim Rng As Range, Sht As Worksheet
  7.          Set Rng = Selection
  8.          Set Sht = Rng.Parent
  9.      Dim Pres As Presentation
  10.          Set Pres = OpenPpt(Fso, ThisWorkbook.Path & "" & Sht.Name & ".Pptx")
  11.          With Sht
  12.               Set Rng = Selection
  13.          End With
  14.          Debug.Print Pres.FullName, Rng.Address
  15.      Dim oScale
  16.      Dim ShpRng 'As ShapeRange
  17.      ''
  18.      Dim Sld As Slide, Shp 'As Shape
  19.          For ii = 1 To Rng.Rows.Count - 1
  20.                Set Sld = Pres.Slides(ii)
  21.                PicName = Rng(ii, 2)
  22.                Set Shp = Sld.Shapes.AddPicture(PicName, msoCTrue, msoCTrue, 410, -100, 295, 720)
  23.                Shp.Name = Rng(ii, 1)
  24.                Set ShpRng = Sld.Shapes.Range(Shp.Name)
  25.                Debug.Print ShpRng.Name
  26.                With ShpRng.PictureFormat
  27.                      .CropTop = 350
  28.                      .CropBottom = 550
  29.                End With
  30.          Next ii
  31.          

  32. End Sub
复制代码

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-8-20 07:30 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
  1. Sub ll()
  2.    Dim Sld As Slide, Slds As Slides
  3.    Dim Shp As Shape, Shps As Shapes
  4.        Set Slds = Application.ActivePresentation.Slides
  5.        For Each Sld In Slds
  6.             Set Shps = Sld.Shapes
  7.             Debug.Print Sld.Name,
  8.             For Each Shp In Shps
  9.                  Debug.Print Shp.Name,
  10.             Next Shp
  11.             Debug.Print
  12.        Next Sld
  13. End Sub
复制代码

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-8-20 08:55 | 显示全部楼层

画蛇添足,必须进一步优化。

image.png




  1. Sub PptMapToCellsColumnsAB()
  2.      Dim PicDict As Dictionary
  3.          Set PicDict = New Dictionary
  4.          
  5.      Dim Fso As FileSystemObject
  6.          Set Fso = New FileSystemObject
  7.      Dim Img As WIA.ImageFile
  8.          Set Img = New WIA.ImageFile
  9.      Dim Rng As Range, Sht As Worksheet
  10.          Set Rng = Selection.CurrentRegion
  11.          Set Sht = Rng.Parent
  12.      Dim Pres As Presentation
  13.          Set Pres = OpenPpt(Fso, ThisWorkbook.Path & "" & Sht.Name & ".Pptx")
  14.          
  15.      Dim ShpRng 'As ShapeRange
  16.      Dim Str
  17.      ''
  18.      Dim Sld As Slide, Shp 'As Shape
  19.          For Each Sld In Pres.Slides
  20.               PicDict(Sld.Name) = ""
  21.          Next Sld
  22.          Debug.Print PicDict.Count
  23.          
  24.          
  25.          For ii = Rng.Rows.Count To 1 Step -1
  26.             Str = Rng(ii, 2).Value
  27.             If PicDict.Exists(Str) Then
  28.             
  29.                Set Sld = Pres.Slides(Rng(ii, 2).Value)
  30.                With Sld
  31.                     Debug.Print .Shapes.Count
  32.                     Set Shp = .Shapes(.Shapes.Count)
  33.                End With
  34.                Rng(ii, "AB") = Shp.Name
  35.             Else
  36.                Rng(ii, 2).EntireRow.Interior.ColorIndex = 4
  37.                Rng(ii, 2).EntireRow.Delete
  38.             End If
  39.          Next ii
  40.          

  41. End Sub
复制代码


您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-12-25 15:35 , Processed in 0.038031 second(s), 10 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表