'Declaration Public Function AddFootnote( _ ByVal footnoteContent As Object, _ Optional ByVal formatting As Formatting _ ) As Footnote
'Usage Dim instance As Document Dim footnoteContent As Object Dim formatting As Formatting Dim value As Footnote value = instance.AddFootnote(footnoteContent, formatting)
public Footnote AddFootnote( object footnoteContent, Formatting formatting )
Parameters
- footnoteContent
- The description of the footnote. Valid values are string, Picture, Hyperlink and Table.
- formatting
- The formatting to use for the footnoteContent (when footnoteContent is a string).
Return Value
The created footnote that will be appended to a paragraph of the document.