Hopefully this link will work:
http://geocities.com/managebrinkster/alignmentquestion.jpg
Right now my text looks like "B" and I want it to look like "A"
I want the numbers in the bulletted list to be "green" like the rest of the text, be the same size, and use a "." instead of a ")" after each number in the list.
Thank you,
Tom
Tom,
There are various properties off of the Bullets property on the list that will allow you to control this, such as:
list.Bullets.Type = BulletType.Decimal;list.Bullets.Template = "{0}.";list.Bullets.Style.Brush = Infragistics.Documents.Graphics.Brushes.Green;
There is also a Font object on the style that you can set as necessary.
-Matt
I didn't know about the Template or Style settings...that was what I needed -- thanks.