mirror of
https://github.com/Stone-Red-Code/docs-desktop.git
synced 2026-09-04 09:06:04 +02:00
* Reset branch for WPF changes * Convert BMP to PNG; fix link-out-of-scope err * Add snippets for WPF... 6794 files!!!! * Add missing snippets * update file updated between migration * Fix paths to include * update breadcrumb and toc * fix index links * fix index links * fix index links * fix markdown
1.5 KiB
1.5 KiB
title, ms.date, helpviewer_keywords, ms.assetid
| title | ms.date | helpviewer_keywords | ms.assetid | ||
|---|---|---|---|---|---|
| How to: Enumerate Drawing Content of a Visual | 03/30/2017 |
|
2974ddb3-2997-4713-8fd2-e93d549c58a8 |
How to: Enumerate Drawing Content of a Visual
The xref:System.Windows.Media.Drawing object provide an object model for enumerating the contents of a xref:System.Windows.Media.Visual.
Example
The following example uses the xref:System.Windows.Media.VisualTreeHelper.GetDrawing%2A method to retrieve the xref:System.Windows.Media.DrawingGroup value of a xref:System.Windows.Media.Visual and enumerate it.
Note
When you are enumerating the contents of the visual, you are retrieving xref:System.Windows.Media.Drawing objects, and not the underlying representation of the render data as a vector graphics instruction list. For more information, see WPF Graphics Rendering Overview.
[!code-csharpDrawingMiscSnippets_snip#GraphicsMMRetrieveDrawings]