Visio (的 Selection.Ungroup 方法)
會將某個群組取消群組。
語法
運算式。取消群組
表達 代表 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 支援與意見反應。