Description

Returns new filtered collection.


Return Type

A wodHtmlEntities object.  Collection of found entities.


Syntax

object.Filter (TypeName)



The Filter Method syntax has these parts:

Part Description
object An expression evaluating to an object of type wodHtmlEntities.
TypeName Required. A String value. Holds entity type name.

Remarks

Filter method will return new IwodHtmlEntities object - a collection of entities that matches you filter. TypeName is actually a tag name, such as IMG, A, HEAD, BODY etc.. For example, you might want to filter out only images. Using simple statement

Dim images As IwodHtmlEntities
set images = wodHtmlEntities.Filter("IMG")

you can get new collection that contains only <IMG...> entities.