Get Range with External Links with Golang via C++

A lot of times Excel files access data from other Excel files using external links. Aspose.Cells provides the option to retrieve these external links by using the Name.GetReferredAreas method. The Name.GetReferredAreas method returns an array of type ReferredArea. The ReferredArea class provides a GetExternalFileName() property which returns the name of the external file. The ReferredArea class exposes the following members.

The sample code given below demonstrates the use of the Name.GetReferredAreas method to retrieve ranges with external links.

Sample Code