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 d8c46ff commit 84550f2Copy full SHA for 84550f2
1 file changed
Types/OpenXML.Word.TableRow/get_Text.ps1
@@ -0,0 +1,9 @@
1
+<#
2
+.SYNOPSIS
3
+ Gets table row text
4
+.DESCRIPTION
5
+ Gets an array containing the text from a table row.
6
+#>
7
+return ,@(foreach ($column in $this.tc) {
8
+ $column.InnerText
9
+})
0 commit comments