Convert a Silverlight text to a path - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T10:48:51Zhttp://stackoverflow.com/feeds/question/396500http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/396500/convert-a-silverlight-text-to-a-path0Convert a Silverlight text to a pathJon Galloway2008-12-28T18:31:02Z2008-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#3965650Answer by Michael S. Scherotter for Convert a Silverlight text to a pathMichael S. Scherotter2008-12-28T19:33:40Z2008-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>