[]
Gets the IShape object that represents the shape attached to the specified hyperlink,
or null if the hyperlink is attached to a range.
Use this property to access the shape anchor when the hyperlink is attached to a drawing object instead of a cell range.
IShape Shape { get; }
ReadOnly Property Shape As IShape
IShape shape = worksheet.Shapes.AddShape(AutoShapeType.Rectangle, 10, 10, 120, 60);
shape.TextFrame.TextRange.Add("Example");
IHyperlink hyperlink = worksheet.Hyperlinks.Add(shape, "https://www.example.com");
IShape attachedShape = hyperlink.Shape;