Re: .NET/Link and two-dimensional strings
- To: mathgroup at smc.vnet.net
- Subject: [mg67272] Re: .NET/Link and two-dimensional strings
- From: "ragfield" <ragfield at gmail.com>
- Date: Thu, 15 Jun 2006 03:25:57 -0400 (EDT)
- References: <e63msq$kqp$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
colin wrote:
> What is my problem?
You're using linear syntax :) I would use StyleForm if you only what
style changes:
Show[Graphics[Text[StyleForm["my text", FontColor -> Red], {0, 0}]]]
Or if you want arbitrary box expressions, try using DisplayForm with
the raw box expression:
Show[Graphics[Text[DisplayForm[FractionBox[StyleBox[1, FontColor ->
Red], SqrtBox[2]]], {0, 0}]]]
-Rob