remove page from fixed document?

╄→гoц情女王★ 提交于 2019-12-04 08:58:34

Could you try "cloning" the document into a new document and copy / move all pages over to the new document, except for the one(s) you want to remove?

Not sure if that would work or not.

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);
    }
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!