|
楼主 |
发表于 2015-12-30 09:02
|
显示全部楼层
COMAddIns属性
返回到对 Microsoft PowerPoint 中当前载入的组件对象模型 (COM) 加载项的调用。这些加载项列在“COM 加载项”对话框中。可以使用“自定义”对话框向“工具”菜单中添加“COM 加载项”命令。只读。
有关返回集合中单个元素的详细信息,请参阅返回集合中的对象。
CommandBars属性
应用于 Application对象的 CommandBars属性。
返回 PowerPoint 中代表所有命令栏的 CommandBars集合。只读。
应用于 Presentation对象的 CommandBars属性。
返回代表在主机容器应用程序和 PowerPoint 中合并命令栏集的 CommandBars集合。仅当容器是 DocObject 服务器(如 Microsoft 活页夹)并且 PowerPoint 作为 OLE 服务器时,此属性返回有效对象。只读。
有关返回集合中单个元素的详细信息,请参阅返回集合中的对象。
VBA示例
应用于 Application对象。
本示例放大所有的工具栏按钮并启用工具提示。
With Application.CommandBars
.LargeButtons = True
.DisplayTooltips = True
End With
应用于 Presentation对象。
本示例在应用程序窗口的顶部显示具有合并命令栏集的“格式”命令栏。
With ActivePresentation.CommandBars("Formatting")
.Visible = True
.Position = msoBarTop
End With
Comments属性
返回Comments对象,该对象代表批注的集合。
expression.Comments
expression 必选。该表达式返回“应用于”列表中的对象之一。
VBA示例
以下示例在幻灯片中添加一个批注。
Sub AddNewComment()
ActivePresentation.Slides(1).Comments.Add _
Left:=0, Top:=0, Author:="John Doe", AuthorInitials:="jd", _
Text:="Please check this spelling again before the next draft."
End Sub
ConnectionSiteCount属性
返回指定形状中的连接部位的数量。只读。Long 类型。
VBA示例
本示例向myDocument 中添加两个矩形,并且用两个连接符连接这两个矩形。两个连接符的起始点都连到第一个矩形上的第一个连接部位;连接符的终止点分别连到第二个矩形上的第一个和最后一个连接部位上。
Set myDocument = ActivePresentation.Slides(1)
Set s = myDocument.Shapes
Set firstRect = s.AddShape(msoShapeRectangle, 100, 50, 200, 100)
Set secondRect = s.AddShape(msoShapeRectangle, 300, 300, 200, 100)
lastsite = secondRect.ConnectionSiteCount
With s.AddConnector(msoConnectorCurve, 0, 0, 100, 100) _
.ConnectorFormat
.BeginConnect ConnectedShape:=firstRect, ConnectionSite:=1
.EndConnect ConnectedShape:=secondRect, ConnectionSite:=1
End With
With s.AddConnector(msoConnectorCurve, 0, 0, 100, 100) _
.ConnectorFormat
.BeginConnect ConnectedShape:=firstRect, ConnectionSite:=1
.EndConnect ConnectedShape:=secondRect, _
ConnectionSite:=lastsite
End With
|
|