I can export a class diagram as an image from Visual Studio by right-clicking on the surface and choosing "Export Diagram as Image..."

Is there a way to do this through command line? I'd like to be able to generate all of my class diagrams as images so I can include it in the .chm I am building w/ Sandcastle.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Found it after a full day of searching. In case anyone ever comes across this again:

Two ways to do this:

  1. Microsoft.VisualStudio.Modeling.Diagrams.Diagram.CreateBitmap() lets you pass in a collection of shapes and export them as a bitmap
  2. Microsoft.VisualStudio.EnterpriseTools.Shell.DiagramExporter is slightly more complicated, but lets you create your own implementation of IServiceProvider, then you can choose locations, file formats, etc.

Slightly more information is available in this MS forum.

link|improve this answer
Please query with Microsoft if you can use the classes from Microsoft namespace. You might hit the rock and violate VS-EULA. – this. __curious_geek May 6 '10 at 5:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.