Gets all named elements from given block element.

Namespace: FirstFloor.Documents.DocumentStructures
Assembly: FirstFloor.Documents (in FirstFloor.Documents.dll) Version: 2.5.0.0 (2.5.1.0)

Syntax

C#
public static IEnumerable<string> GetAllNamedElements(
	this BlockElement element
)
Visual Basic
<ExtensionAttribute> _
Public Shared Function GetAllNamedElements ( _
	element As BlockElement _
) As IEnumerable(Of String)
Visual C++
[ExtensionAttribute]
public:
static IEnumerable<String^>^ GetAllNamedElements(
	BlockElement^ element
)

Return Value

A list of element names found in given block element.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type BlockElement. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .

See Also