I was unable to find an example on how to get values stored as part of
AlternateConfig XML tag.
For example, my test Excel file has this
<mc:AlternateContent xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006">
<mc:Choice Requires="x15">
<x15ac:absPath url="C:\_temp\" xmlns:x15ac="http://schemas.microsoft.com/office/spreadsheetml/2010/11/ac"/>
</mc:Choice>
</mc:AlternateContent>
as part of
workbook.xml
I want to get value stored in
url (
C:\_temp\) in my code.
Is it possible to get that value and if so, can anyone provide me with an example on how to do it?