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.
1 parent 752eb0a commit 5cfa47fCopy full SHA for 5cfa47f
Types/OpenXML.PowerPoint.Slide/get_Text.ps1
@@ -0,0 +1,9 @@
1
+@($this.Content |
2
+ Select-Xml -XPath '//a:t' -Namespace @{a='http://schemas.openxmlformats.org/drawingml/2006/main'} |
3
+ Foreach-Object {
4
+ if ($_.Node.LocalName -eq 't') {
5
+ $_.Node.InnerText
6
+ } else {
7
+ [Environment]::NewLine
8
+ }
9
+ }) -join ''
0 commit comments