Hi Yemoku,
Based on the details provided, we understand that your requirement is to insert
icons into a Word document using DocIO. But there is no support for inserting
icons.
Upon further analysis, we found that icons inserted in a Word document are
stored as pictures at the file level.
As a workaround, we suggest inserting an image into the document using
the following approach:
FileStream imageStream
= new FileStream(@"Image.png", FileMode.Open, FileAccess.ReadWrite);
//Appends new
picture to the paragraph
WPicture picture = paragraph.AppendPicture(imageStream)
as WPicture;
|
For more detailed information about working with Images, kindly refer the UG:
Working
with Images in .NET Word library | Syncfusion
Regards,
Sindhu Ramesh.