API Reference

Cmdlet

Get-OfficeWordEndnote

Aliases: WordEndnotes
Namespace PSWriteOffice
Aliases
WordEndnotes
Inputs
OfficeIMO.Word.WordDocument OfficeIMO.Word.WordSection
Outputs
PSWriteOffice.Services.Word.WordNoteInfo

Gets endnotes from a Word document or section.

Remarks

Gets endnotes from a Word document or section.

Examples

Authored help example

Export endnotes for editorial review.

PS>


$endnotes = Get-OfficeWordEndnote -Path .\ResearchReport.docx
            $endnotes |
                Select-Object -Property Kind, ReferenceId, ParentText, Text |
                Export-Csv -Path .\Endnotes.csv -NoTypeInformation
        

Reads endnotes 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-OfficeWordEndnote -InputPath <String> [<CommonParameters>]
#
Parameter set: Path

Parameters

InputPath String requiredposition: 0pipeline: Falsealiases: FilePath, Path
Path to the document.

Outputs

PSWriteOffice.Services.Word.WordNoteInfo: Describes a Word footnote or endnote in a document-safe snapshot.

Get-OfficeWordEndnote -Document <WordDocument> [<CommonParameters>]
#
Parameter set: Document

Parameters

Document WordDocument requiredposition: namedpipeline: True (ByValue)
Document to inspect.

Outputs

PSWriteOffice.Services.Word.WordNoteInfo: Describes a Word footnote or endnote in a document-safe snapshot.

Get-OfficeWordEndnote -Section <WordSection> [<CommonParameters>]
#
Parameter set: Section

Parameters

Section WordSection requiredposition: namedpipeline: True (ByValue)
Section to inspect.

Outputs

PSWriteOffice.Services.Word.WordNoteInfo: Describes a Word footnote or endnote in a document-safe snapshot.