本文介绍了从固定文件中删除页面?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何从fixedDocument中删除页面?

How can I remove a page from a fixedDocument?

我添加这样的页面:

// Add page to pageContent
PageContent pageContent = new PageContent();
((IAddChild)pageContent).AddChild(fixedPage);

// Add pageContent to wholeDoc
fixedDocument.Pages.Add(pageContent);

//Add to documentVeiwer
documentViewer1.Document = fixedDocument;

但是没有'fixedDocument.Pages.Remove(page)'方法!我该怎么办?

But there is no 'fixedDocument.Pages.Remove(page)' method! What can I do?

推荐答案

我知道这是一个老问题,但是最近我想到了这个问题.

I know this is an old question but this came up for me recently.

public class MyFixedDocument : FixedDocument
{
    public FamilyLawFixedDocument() : base() { }

    public void RemoveChild(object child)
    {
        //call protected method of base class
        base.RemoveLogicalChild(child);
    }
}

这篇关于从固定文件中删除页面?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 08:48