Represents the Microsoft FrontPage document. The IFPDocument object includes properties and methods that return objects compatible with Microsoft Internet Explorer 4.0 and later, but not with the Internet Explorer 5 Dynamic HTML object model.
You can use the createUndoTransaction method of the IFPDocument object to create an UndoTransaction object.
Set myUndoTransaction = _
ActiveDocument.createUndoTransaction(myUTransName)
Use the DocumentHTML property to return a vector string that contains the entire text within the specified document. The following statement retrieves the vector string for the variable myDocObject.
myDocHTML = myDocObject.DocumentHTML
Use the isDirty property to return the state of the document—has it been modified since the last save? If the document has been modified then the property will return True.
myIsDirty = IFPDocument.isDirty