Corners Property [Excel 2003 VBA Language Reference]

Returns a Corners object that represents the corners of a 3-D chart. Read-only.

Example

This example selects the corners of Chart1. The example should be run on a 3-D chart (the Select method fails on any other chart type).

With Charts("Chart1")
    .Activate
    .Corners.Select
End With

Applies to | Chart Object