Working on something I haven't done before - adding text to a layout - and I'm curious if it's possible to add a background color to that text. So, say I have:
// Create report text
Coordinate2D propDesc_ll = new Coordinate2D(1, .25);
propertyData = "OMG THIS IS STUFF IN A TEXT BOX.";
CIMTextSymbol txtFormat = SymbolFactory.Instance.ConstructTextSymbol(ColorFactory.Instance.BlackRGB, 10, "Arial");
TextElement propDescTxtElm = (TextElement)ElementFactory.Instance.CreateTextGraphicElement(newLayout, TextType.PointText, propDesc_ll.ToMapPoint(), txtFormat, propertyData);
How would I go about making the background, let say, light blue or something. Anything really. I can't seem to find an answer via googling around.