Selection.Ungroup 方法 (Visio)
取消组的组合。
语法
表达式。取消分组
表达 一个代表 Selection 对象的变量。
返回值
无
示例
以下 Microsoft Visual Basic for Applications (VBA) 宏显示如何使用 Ungroup 方法。
Sub Ungroup_Example()
Dim vsoShape1 As Visio.Shape
Dim vsoShape2 As Visio.Shape
Dim vsoShape3 As Visio.Shape
Dim vsoGroup As Visio.Shape
Dim vsoSelection As Visio.Selection
'Draw two rectangles.
Set vsoShape1 = ActivePage.DrawRectangle(1, 2, 2, 1)
Set vsoShape2 = ActivePage.DrawRectangle(1, 4, 2, 3)
'Add a copy of one of the rectangles to the page.
ActivePage.Drop vsoShape1, 3.5, 3.5
Set vsoShape3 = ActivePage.Shapes(3)
'Deselect all shapes, and then select all the shapes on the page.
Set vsoSelection = ActiveWindow.Selection
vsoSelection.Select vsoShape1, visDeselectAll + visSelect
vsoSelection.Select vsoShape2, visSelect
vsoSelection.Select vsoShape3, visSelect
'Group all the shapes into a group shape.
Set vsoGroup = vsoSelection.Group
'Ungroup the shapes.
vsoGroup.Ungroup
End Sub
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。