ShapeRange.ParentGroup プロパティ (Excel)
子図形または子図形の範囲の共通の親図形を表す Shape オブジェクトを取得します。
構文
式。ParentGroup
式ShapeRange オブジェクトを表す変数。
例
次の使用例は、アクティブ ワークシートに 2 つの図形を追加し、そのグループの親の図形を削除することによって、2 つの図形を削除します。
Sub ParentGroup()
Dim pgShape As Shape
With ActiveSheet.Shapes
.AddShape Type:=1, Left:=10, Top:=10, _
Width:=100, Height:=100
.AddShape Type:=2, Left:=110, Top:=120, _
Width:=100, Height:=100
.Range(Array(1, 2)).Group
End With
' Using the child shape in the group get the Parent shape.
Set pgShape = ActiveSheet.Shapes(1).GroupItems(1).ParentGroup
MsgBox "The two shapes will now be deleted."
' Delete the parent shape.
pgShape.Delete
End Sub
サポートとフィードバック
Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。