Skip to main content
All docs
V24.1

DxHtmlElement.FindElementsByTag(String) Method

Returns all of this element’s Children collection items that have the specific tag.

Namespace: DevExpress.Utils.Html

Assembly: DevExpress.Data.Desktop.v24.1.dll

NuGet Packages: DevExpress.Data.Desktop, DevExpress.ExpressApp.Win.Design

Declaration

public IEnumerable<DxHtmlElement> FindElementsByTag(
    string name
)

Parameters

Name Type Description
name String

The tag to find.

Returns

Type Description
IEnumerable<DxHtmlElement>

The collection of child elements with the given tag.

See Also