Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Export How to?? (Read 1297 times)
Phil Jacques
Junior Member
**
Offline


.NET 2.0 Rocks!!!

Posts: 70
Joined: Oct 20th, 2006
Export How to??
Oct 25th, 2006 at 11:25am
Print Post  
Hello,

One functionality which we wished to have in the component was that of an export. Export as image, PDF, Visio, Word Document, PowerPoint, XML, WMF and SVG.

I know all are not supported. I wish to know, how do i achieve the export as WMF and Word Document.

Secondly, do you have some knowledgebase site? Like solutions to common problems, i did try to search through the forums but could not find any related to export.

Thanks in advance.

Phil
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Export How to??
Reply #1 - Oct 25th, 2006 at 12:18pm
Print Post  
Hello,

At this time there isn't built-in support for exporting to WMF. Try to create a metafile Graphics object and draw the flowchart items in it, e.g.:

foreach (ChartObject item in flowChart.Objects)
{
  item.Draw(g, true); // draw the shadow
  item.Draw(g, false); // and the item itself
}

You could embed a bitmap image into the word document.

We have recently started to add KB topics here:
http://mindfusion.org/cgi/HelpDesk/index.php?

but there isn't much progress yet.

Stoyan
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint