0

我知道这非常简单,我似乎无法弄清楚或在其他地方找到答案。我想做的是获取所选图像的范围。在此先感谢您的帮助。

4

1 回答 1

1

此处示例如何在 Excel 工作表上获取图片的左上角和右下角单元格。必须选择图片。

Sub test()
    If (VBA.TypeName(Selection) = "Picture") Then
        Dim pic As Excel.Picture
        Set pic = Selection

        Dim topLeft As Range
        Set topLeft = pic.TopLeftCell
        Debug.Print topLeft.Address

        Dim bottomRight As Range
        Set bottomRight = pic.BottomRightCell
        Debug.Print bottomRight.Address
    End If
End Sub
于 2013-07-31T13:48:07.893 回答