DocumentHTML Property

       

Returns the entire set of HTML tags for the specified Document object in string format. Read/write String.

Example

This example displays all of the HTML tags in the Immediate window.

Private Sub ListAllTags()
Dim myDocObject As FPHTMLDocument
Dim myDocHTML As String

Set myDocObject = ActivePageWindow.ActiveDocument

myDocHTML = myDocObject.DocumentHTML
Debug.Print myDoc

End Sub