Hi,
I insert icons in my FormattedTextEditor like that :
string encodedImage = editInfo.EncodeImage(this.MYImage);
editInfo.InsertValue(String.Format("<img style=\"width:25px; height:25px;\" data=\"{0}\" />", encodedImage));
is it possible to center that icon ? I can't find a way to do that
Thanks
David
David,
You could try centering a paragraph tag:
<p style=\"text-align:Center;\"><img style=\"width:25px; height:25px;\" data=\"{0}\" /></p>
-Matt
Work nice
thank you very much !