New to Telerik UI for WPF? Start a free 30-day trial
Getting All RadDocument child Elements of the Same Type in RadRichTextBox
Updated on Mar 17, 2026
Environment
| Product | UI for WPF RichTextBox |
| Version | Current |
Description
How to enumerate all document elements of the same type from a RadRichTextBox' RadDocument.
Solution
To get all elements use the EnumareteChildrenOfType
C#
var allFloatingImages = this.radDocument.EnumerateChildrenOfType<FloatingImageBlock>();