将visio页面复制到新文档

时间:2017-03-10 11:06:50

标签: c# office-interop visio

我想要完成的任务:
我想将我的Visio应用程序中的活动页面复制到一个新文档并将其保存(并使其成为数据库的byte[]),我已经这样做但是稍微错误了#34;因为与Visio应用程序的交互太多。

将页面复制到字节数组的方法:

private static byte[] VisioPageToBytes()
{
    //Make a new invisible app to dump the shapes in
    var app = new InvisibleApp();

    Page page = MainForm.IVisioApplication.ActivePage;
    app.AlertResponse = 2;

    //Selact all shapes and copy, then deselect
    MainForm.IVisioApplication.ActiveWindow.SelectAll();
    MainForm.IVisioApplication.ActiveWindow.Selection.Copy();
    MainForm.IVisioApplication.ActiveWindow.DeselectAll();

    //Add empty document to invisible app and dump shapes
    app.Documents.Add( string.Empty );
    app.ActivePage.Paste();

    //Save document and convert to byte[]
    app.ActiveDocument.SaveAs( Application.UserAppDataPath + @"/LastStored.vsd" );
    app.ActiveDocument.Close();
    app.Quit();
    app.AlertResponse = 0;
    var bytes = File.ReadAllBytes( Application.UserAppDataPath + @"/LastStored.vsd" );
    Clipboard.Clear();
    return bytes;
}

为什么会出错:
此代码在visio页面中进行选择,并且必须打开一个不可见的窗口来存储页面。我正在寻找一种与Visio应用程序交互较少的方法(因为它不稳定)。第二个(不可见的)Visio应用程序的打开偶尔会使我的主要Visio应用程序崩溃。

我想做类似的事情:

Page page = MainForm.IVisioApplication.ActivePage;
Document doc;
doc.Pages.Add( page ); //Pages.Add has no parameters so this doesn't work
doc.SaveAs(Application.UserAppDataPath + @"/LastStored.vsd");

如果这种方式无法以较少的互动方式实现(通过"构建"文档),请发表评论告诉我。

TL; DR;
我不想在不打开Visio的情况下制作新的Visio文档,并将1页的内容复制到其中。

1 个答案:

答案 0 :(得分:1)

如果您想创建一个复制页面,那么您可能会在Page上找到Duplicate方法,但通过它的声音,只需保存现有文档即可:

void Main()
{
    var vApp = MyExtensions.GetRunningVisio();

    var sourcePage = vApp.ActivePage;
    var sourcePageNameU = sourcePage.NameU;
    var vDoc = sourcePage.Document;
    vDoc.Save(); //to retain original
    var origFileName = vDoc.FullName;

    var newFileName = Path.Combine(vDoc.Path, $"LastStored{Path.GetExtension(origFileName)}");
    vDoc.SaveAs(newFileName);

    //Remove all other pages
    for (short i = vDoc.Pages.Count; i > 0; i--)
    {
        if (vDoc.Pages[i].NameU != sourcePageNameU)
        {
            vDoc.Pages[i].Delete(0);
        }
    }

    //Save single page state
    vDoc.Save();

    //Close copy and reopen original
    vDoc.Close();
    vDoc = vApp.Documents.Open(origFileName);
}

GetRunningVisio是我使用LinqPad的扩展方法:

http://visualsignals.typepad.co.uk/vislog/2015/12/getting-started-with-c-in-linqpad-with-visio.html

...但您已经获得了对您的应用的引用,因此您可以使用它。

根据评论进行更新:

好的,那么原始代码的修改怎么样?请注意,我从页面创建了一个新的Selection对象,但没有更改Window对象,因此这不应该干扰用户看到的内容或更改源文档。

void Main()
{
    var vApp = MyExtensions.GetRunningVisio();

    var sourcePage = vApp.ActivePage;
    var sourceDoc = sourcePage.Document;
    var vSel = sourcePage.CreateSelection(Visio.VisSelectionTypes.visSelTypeAll);
    vSel.Copy(Visio.VisCutCopyPasteCodes.visCopyPasteNoTranslate);

    var copyDoc = vApp.Documents.AddEx(string.Empty,
                         Visio.VisMeasurementSystem.visMSDefault,
                         (int)Visio.VisOpenSaveArgs.visAddHidden);
    copyDoc.Pages[1].Paste(Visio.VisCutCopyPasteCodes.visCopyPasteNoTranslate);

    var origFileName = sourceDoc.FullName;
    var newFileName = Path.Combine(sourceDoc.Path, $"LastStored{Path.GetExtension(origFileName)}");
    copyDoc.SaveAs(newFileName);
    copyDoc.Close();
}

请注意,这只会创建一个默认页面,因此您可能希望在粘贴之前包括对页面单元格(如PageWidth,PageHeight,PageScale和DrawingScale等)进行复制。