GM
Gowri Manohari D
Syncfusion Team
August 21, 2009 09:55 AM UTC
Hi Bravejavis,
Thank you for choosing Syncfusion products.
1. Please provide the sample visio file which you have used.
2. We can add the visio palette's in symbol designer by VisioStencilConverter class and Convert() method from Syncfusion.Diagram.Utility.Windows namespace. Please refer the below code snippet for further reference.
Match match = Regex.Match( strFileName, ".vss|.vsx|.vsd|.vdx",options );
if ( match.Success )
{
VisioStencilConverter converter = new VisioStencilConverter(strFileName, this); // this-----Current parent Form
converter.ShowProgressDialog = true;
curSymbolPalette = converter.Convert();
if (curSymbolPalette != null)
symbolPaletteGroupBar.AddPalette(curSymbolPalette);
}
Here "strFileName" refers to the Visio File which we want to add.
Let me know if you have any questions in this regard.
Regards,
Gowri