EditConvertAllEndnotes

Syntax

EditConvertAllEndnotes

Remarks

Converts all endnotes in the active document to footnotes. An error occurs if there are no endnotes.

Example

This example converts all endnotes to footnotes. If WordBasic error 509 ("This command is not available") occurs, the error handler displays the message "No endnotes to convert" instead of the standard WordBasic error message. Other error conditions generate standard messages.


On Error Goto trap
EditConvertAllEndnotes
trap:
Select Case Err
    Case 509 : MsgBox "No endnotes to convert."
    Case Else : Error Err
End Select

See Also

EditConvertAllFootnotes, EditConvertNotes, EditSwapAllNotes