gpt4 book ai didi

image - 使用 VBA 更改图片

转载 作者:行者123 更新时间:2023-12-04 01:40:13 25 4
gpt4 key购买 nike

当您右键单击 Excel/Word/Powerpoint 中的形状时,我正在尝试使用 VBA 来自动化更改图片功能。

但是,我找不到任何引用资料,您能帮忙吗?

最佳答案

据我所知你不能改变图片的来源,你需要删除旧的并插入新的

这是一个开始

strPic ="Picture Name"
Set shp = ws.Shapes(strPic)

'Capture properties of exisitng picture such as location and size
With shp
t = .Top
l = .Left
h = .Height
w = .Width
End With

ws.Shapes(strPic).Delete

Set shp = ws.Shapes.AddPicture("Y:\our\Picture\Path\And\File.Name", msoFalse, msoTrue, l, t, w, h)
shp.Name = strPic
shp.ScaleHeight Factor:=1, RelativeToOriginalSize:=msoTrue
shp.ScaleWidth Factor:=1, RelativeToOriginalSize:=msoTrue

关于image - 使用 VBA 更改图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10169011/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com