[]
Returns the shape's parent sheet.
Returns the IWorksheet that contains this shape.
IWorksheet Parent { get; }
ReadOnly Property Parent As IWorksheet
IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Rectangle, 20, 20, 120, 60);
IWorksheet parent = shape.Parent;
string sheetName = parent.Name;