all i want is to insert a simple Bulleted List inside RadRichtextBox.
Or basically, I want to show few texts in bullets.
How do I do that?
I tried above code and also this.
Nothing works, not even my text appears inside the richtextbox upon run.
Please help.
Or basically, I want to show few texts in bullets.
How do I do that?
BulletedList list =
new
BulletedList(
this
.radRichTextBox1.Document);
foreach
(
string
item
in
TableOfContent)
{
Paragraph p =
new
Paragraph();
p.Inlines.Add(
new
Span(item));
list.AddParagraph(p);
ListItemInfo li =
new
ListItemInfo(list, p, 1);
}
I tried above code and also this.
Nothing works, not even my text appears inside the richtextbox upon run.
Please help.