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 84550f2 commit da0fea5Copy full SHA for da0fea5
1 file changed
OpenXML.types.ps1xml
@@ -659,6 +659,20 @@ foreach ($column in $this.tr) {
659
}
660
</GetScriptBlock>
661
</ScriptProperty>
662
+ <ScriptProperty>
663
+ <Name>Text</Name>
664
+ <GetScriptBlock>
665
+ <#
666
+.SYNOPSIS
667
+ Gets table row text
668
+.DESCRIPTION
669
+ Gets an array containing the text from a table row.
670
+#>
671
+return ,@(foreach ($column in $this.tc) {
672
+ $column.InnerText
673
+})
674
+ </GetScriptBlock>
675
+ </ScriptProperty>
676
</Members>
677
</Type>
678
</Types>
0 commit comments