Skip to content

Commit 84550f2

Browse files
feat: OpenXML.Word.TableRow.get_Text ( Fixes #50 )
1 parent d8c46ff commit 84550f2

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)