FPHTMLBlockElement Object


Represents the BLOCKQUOTE element in an HTML document. See also the IHTMLBlockElement object.
Using the FPHTMLBlockElement object
Use the tags method to return an IHTMLElementCollection collection that represents all the BLOCKQUOTE elements in a document. Use the Item method to return an FPHTMLBlockElement object that accesses a specific BLOCKQUOTE element, referenced by ordinal number or by the value of the id attribute. The following example accesses the first BLOCKQUOTE element in the active document.
Dim objBlock As FPHTMLBlockElement
Set objBlock = ActiveDocument.all.tags("blockquote").Item(0)