excel如何将Selection.Placement = xlMoveAndSize (大小和位置随单元格而变)编辑到VBA中,如何编辑
发布网友
发布时间:2022-05-29 19:39
我来回答
共1个回答
热心网友
时间:2023-11-13 16:02
关键是要知道插入的图片的名称或序号,另外要确定随哪一个单元格变化,如果当前工作表内只有一个图型,要使它随D3单元格调整,以下代码即可。
With ActiveSheet.Shapes(1)
.Left = Range("D3").Left
.Top = Range("D3").Top
.Width = Range("D3").Width
.Height = Range("D3").Height
.Placement = xlMoveAndSize
End With