0

ms word ではマクロを記録して、既に挿入され選択されている画像の位置を変更できないため、Visual Basic でマクロを作成する必要があります。

次のことを行う必要があります。 1. 選択した写真に境界線を付けます。 2. その位置をページの下端に変更します。

4

1 に答える 1

0

InlineShapeドキュメント ( ) に1 つしかない場合ActiveDocument、次のコードで両方のニーズを解決できます。

Sub qSolved()

    With ActiveDocument.InlineShapes(1)
        'border
        .Line.Weight = xlThin
        'conversion to Shape
        .ConvertToShape
    End With

    'bonus :) -if you need to set position of newly created Shape
    With ActiveDocument.Shapes(1)
        .Top = 100
        .Left = 100
    End With
End Sub
于 2013-08-28T18:03:20.237 に答える