Shape.Title プロパティ (Visio)
オブジェクトに関連付けられている代替テキストを設定または返します。 値の取得と設定が可能です。
式。タイトル
式Shape オブジェクトを表す変数。
文字列
Visio を使用してアクセス可能な図を作成するには、このプロパティを使用します。
注意
Microsoft Visio 2016 C2R 以降では、Page、Shape、および Master オブジェクトの Title を使用できます。
このVisual Basic for Applications (VBA) マクロは、図形の Title プロパティを設定して取得する方法を示しています。
public Sub ShapeTitle_Example()
Dim vsoRectangle As Visio.Shape
'Create a rectangle shape and add title text to it.
Set vsoRectangle = ActivePage.DrawRectangle(2, 3, 5, 4)
vsoRectangle.Title = "Rectangle Shape title text"
'Get a Cell object from the shape.
Set vsoCell = vsoRectangle.Cells("Width")
'Use the Shape property to get the Shape object.
Set vsoShapeFromCell = vsoCell.Shape
'Use shape's title text to verify the proper Shape
'object was returned.
Debug.Print vsoShapeFromCell.Title
End Sub
Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。