Convert a Silverlight text to a path - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T10:48:51Z http://stackoverflow.com/feeds/question/396500 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/396500/convert-a-silverlight-text-to-a-path 0 Convert a Silverlight text to a path Jon Galloway 2008-12-28T18:31:02Z 2008-12-28T19:33:40Z <p>Is there any way to render a Silverlight text to a path or graphics object <strong>at runtime</strong>? I know this can be done using the design tools, but I want to be able to do this on the fly.</p> <p>I've seen an example that <a href="http://blogs.msdn.com/webnext/archive/2007/05/22/silverlight-convert-text-to-path.aspx" rel="nofollow">calls a webservice which uses WPF constructs to convert a WPF FormattedText object to a PathGeometry</a>, but those objects aren't available in Silverlight.</p> <p>I'm pretty sure this just isn't supported in Silverlight, but thought it was worth asking.</p> http://stackoverflow.com/questions/396500/convert-a-silverlight-text-to-a-path/396565#396565 0 Answer by Michael S. Scherotter for Convert a Silverlight text to a path Michael S. Scherotter 2008-12-28T19:33:40Z 2008-12-28T19:33:40Z <p>As you suspected, you'd have to do it server-side to convert the text to a PathGeometry which <b>is</b> supported in Silverlight. What are you trying to achieve?</p>