Visio) (Shape.Title 属性
返回或设置与 对象关联的可选文本。 读/写。
语法
表达式。标题
表达 一个代表 Shape 对象的变量。
返回值
String
备注
使用此属性通过 Visio 创建可访问的图表。
示例
此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 支持和反馈,获取有关如何接收支持和提供反馈的指南。