高分,谁帮忙做一个excel2010的宏,要求,点击宏,自动给表格里所有图片加一个黑色边框。

2025-06-22 19:59:44
推荐回答(1个)
回答1:

Sub 图片加边框()
ActiveSheet.Shapes.SelectAll
With Selection.ShapeRange.Line
.Visible = msoTrue
.Weight = 3
End With
End Sub