マクロでの画像サイズの決定(Microsoft Word)
Wordは、ドキュメントに挿入する画像に関するかなりの情報をまとめて保持します。この情報は、Wordが画像のサイズ変更、配置、表示の方法を知るために必要です。ドキュメント内の画像に関する詳細情報を知りたい場合は、Wordが情報を保存する方法について何かを知る必要があります。
画像は、通常の形状またはインライン形状の2種類のグラフィックオブジェクトとして保存されます。通常の形状は、テキストレイヤーに存在するインライン形状とは対照的に、描画レイヤーに存在する形状です。どちらのタイプのオブジェクトも、異なるオブジェクトコレクションとともに保存されます。通常の図形はShapesコレクションにあり、インライン図形はInlineShapesコレクションに保存されます。オブジェクトに関する情報にアクセスするには、小さなVBAを使用する必要があります。
次のVBAマクロは、ドキュメント内のすべてのグラフィックスオブジェクトのサイズをポイントとピクセルの両方で表示するドキュメントを作成します。
Sub FigureInfo() Dim iShapeCount As Integer Dim iILShapeCount As Integer Dim DocThis As Document Dim J As Integer Dim sTemp As String Set DocThis = ActiveDocument Documents.Add iShapeCount = DocThis.Shapes.Count If iShapeCount > 0 Then Selection.TypeText Text:="Regular Shapes" Selection.TypeParagraph End If For J = 1 To iShapeCount Selection.TypeText Text:=DocThis.Shapes(J).Name Selection.TypeParagraph sTemp = " Height (points): " sTemp = sTemp & DocThis.Shapes(J).Height Selection.TypeText Text:=sTemp Selection.TypeParagraph sTemp = " Width (points): " sTemp = sTemp & DocThis.Shapes(J).Width Selection.TypeText Text:=sTemp Selection.TypeParagraph sTemp = " Height (pixels): " sTemp = sTemp & PointsToPixels(DocThis.Shapes(J).Height, True) Selection.TypeText Text:=sTemp Selection.TypeParagraph sTemp = " Width (pixels): " sTemp = sTemp & PointsToPixels(DocThis.Shapes(J).Width, False) Selection.TypeText Text:=sTemp Selection.TypeParagraph Selection.TypeParagraph Next J iILShapeCount = DocThis.InlineShapes.Count If iILShapeCount > 0 Then Selection.TypeText Text:="Inline Shapes" Selection.TypeParagraph End If For J = 1 To iILShapeCount Selection.TypeText Text:="Shape " & J Selection.TypeParagraph sTemp = " Height (points): " sTemp = sTemp & DocThis.InlineShapes(J).Height Selection.TypeText Text:=sTemp Selection.TypeParagraph sTemp = " Width (points): " sTemp = sTemp & DocThis.InlineShapes(J).Width Selection.TypeText Text:=sTemp Selection.TypeParagraph sTemp = " Height (pixels): " sTemp = sTemp & PointsToPixels(DocThis.InlineShapes(J).Height, True) Selection.TypeText Text:=sTemp Selection.TypeParagraph sTemp = " Width (pixels): " sTemp = sTemp & PointsToPixels(DocThis.InlineShapes(J).Width, False) Selection.TypeText Text:=sTemp Selection.TypeParagraph Selection.TypeParagraph Next J End Sub
マクロは通常の形状の名前を返しますが、インライン形状の名前は返さないことに注意してください。これは、Wordがインラインシェイプの名前を保持していないためです。ドキュメントに(ここでも描画レイヤーに)通常の図形を挿入すると、Wordは長方形2や楕円形3などの名前を図形に割り当てます。
注:
このページ(または_WordTips_サイトの他のページ)で説明されているマクロの使用方法を知りたい場合は、役立つ情報を含む特別なページを用意しました。
link:/ wordribbon-WordTipsMacros [ここをクリックして、新しいブラウザタブでその特別なページを開きます]
。
_WordTips_は、費用効果の高いMicrosoftWordトレーニングのソースです。
(Microsoft Wordは、世界で最も人気のあるワードプロセッシングソフトウェアです。)このヒント(8343)は、Microsoft Word 2007、2010、2013、2016、2019、およびOffice 365のWordに適用されます。このヒントのバージョンは、ここにWordの古いメニューインターフェイス:
link:/ word-Determining_Picture_Size_in_a_Macro [マクロでの画像サイズの決定]
。