Scan through the structure to find all structure elements of a particular type.

 

   

Syntax
 

[C#]
List<StructureElementElement> FindElementsByType(string type)

[Visual Basic]
Sub FindElementsByType(type As string) As List<StructureElementElement>

 

   

Params
 
Name Description
type The tag type to be found. For example "P" or "Span".
return A list of the found structure elements.

 

   

Notes
 
Scan through the structure to find all structure elements of a particular type.

 

   

Example
 
None.