We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
OpenXML.Excel.File.get_SharedString
1 parent 15c00cb commit 770759aCopy full SHA for 770759a
Types/OpenXML.Excel.File/Alias.psd1
@@ -0,0 +1,3 @@
1
+@{
2
+ SharedStrings = 'SharedString'
3
+}
Types/OpenXML.Excel.File/get_SharedString.ps1
@@ -0,0 +1,11 @@
+<#
+.SYNOPSIS
+ Gets an Excel File's Shared Strings
4
+.DESCRIPTION
5
+ Gets an Excel File's Shared Strings.
6
+
7
+ In Excel, any cell with text in it really contains an index of it's shared string.
8
+.EXAMPLE
9
+ Get-OpenXML ./Examples/HelloWorld.xlsx | Select -Expand SharedString
10
+#>
11
+,@($this.Parts.'/xl/sharedStrings.xml'.Content.sst.si.t)
0 commit comments