Support for MS Word icons

Hello,

DocIO supports all the autoshapes available in Microsoft Word (2019) using syntax like 

paragraph.AppendShape(AutoShapeType.RoundedRectangle, 150, 100);


Is there anyway/support for  Microsoft Word icons? (Available from the Insert Menu in Microsoft Word)

Icon Menu.png

Thanks


1 Reply

SR Sindhu Ramesh Syncfusion Team February 11, 2025 04:24 PM UTC

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.


Loader.
Up arrow icon