using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace SharpDX.Direct2D1 { public partial class SvgDocument { /// /// Finds an svg element by id /// /// Id to lookup for /// SvgElement if found, null otherwise public SvgElement FindElementById(string id) { SharpDX.Result __result__; SvgElement svgElement; __result__ = TryFindElementById_(id, out svgElement); __result__.CheckError(); return svgElement; } } }