API Reference
Get-OfficeWordFootnote
Gets footnotes from a Word document or section.
Remarks
Gets footnotes from a Word document or section.
Examples
Export footnotes for review.
PS>
$footnotes = Get-OfficeWordFootnote -Path .\PolicyReport.docx
$footnotes |
Select-Object -Property Kind, ReferenceId, ParentText, Text |
Export-Csv -Path .\Footnotes.csv -NoTypeInformation
Reads footnotes from the document and exports the PowerShell-friendly note snapshot.
Common Parameters
This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
For more information, see about_CommonParameters.
Syntax
Get-OfficeWordFootnote -InputPath <String> [<CommonParameters>]#PathParameters
- InputPath String
- Path to the document.
Outputs
PSWriteOffice.Services.Word.WordNoteInfo: Describes a Word footnote or endnote in a document-safe snapshot.
Get-OfficeWordFootnote -Document <WordDocument> [<CommonParameters>]#DocumentParameters
- Document WordDocument
- Document to inspect.
Outputs
PSWriteOffice.Services.Word.WordNoteInfo: Describes a Word footnote or endnote in a document-safe snapshot.
Get-OfficeWordFootnote -Section <WordSection> [<CommonParameters>]#SectionParameters
- Section WordSection
- Section to inspect.
Outputs
PSWriteOffice.Services.Word.WordNoteInfo: Describes a Word footnote or endnote in a document-safe snapshot.