页眉和页脚的abcpdf内容前端

时间:2015-01-05 16:54:57

标签: c# header footer abcpdf

我正在尝试使用abcpdf创建一个结构,假设是这样的:

头 内容 页脚

P.S:内容需要"前面的"页眉和页脚

换句话说,我需要让我的内容从 y = 0到y = 100%;我的标题从 y = 0到y = 200 开始;我的页脚从 y = 700开始到y = 100%(这里的值只是样本)

我希望我很清楚。

目前我有这些方法:

private void CreateDocHeader(Doc theDoc, int theCount, string content)
    {
        theDoc.Rect.String = "0 660 600 825";
        theDoc.MediaBox.String = theDoc.Rect.String;
        for (int i = 1; i <= theCount; i++)
        {
            theDoc.PageNumber = i;
            theDoc.AddImageHtml(content);
        }
    }

    private void CreateDocFooter(Doc theDoc, int theCount, string content)
    {
        theDoc.Rect.String = "0 200 600 10";
        theDoc.MediaBox.String = theDoc.Rect.String;
        for (int i = 1; i <= theCount; i++)
        {
            theDoc.PageNumber = i;
            theDoc.AddImageHtml(content);
        }
    }

    private void CreateDocContent(Doc theDoc, int theID, string theContent, ref int theCount)
    {
        theDoc.Rect.String = "0 800 600 10";
        theDoc.MediaBox.String = theDoc.Rect.String;
        theID = theDoc.AddImageHtml(theContent);
        while (theDoc.Chainable(theID))
        {
            theDoc.Page = theDoc.AddPage();
            theID = theDoc.AddImageToChain(theID);
        }
        theCount = theDoc.PageCount;
    }

任何?

1 个答案:

答案 0 :(得分:1)

使用Hpos和Vpos属性执行此操作: -

对于标题,请执行以下操作:

theDoc.HPos = 0.5;
theDoc.VPos = 1.0;

这将使您的标题保持左对齐。

对于页脚,请执行以下操作:

theDoc.HPos = 1.0;
theDoc.VPos = 0.5;

这将使您的页脚保持正确对齐。

希望这有帮助。

<强>增加:

要获得Z位置,即页眉/页脚和内容具有不同的层,请使用图层属性。此属性与 LayerCount 属性一起,您可以获得解决方案。

有关更多参考,请参阅此文档: -

http://www.websupergoo.com/helppdfnet/source/5-abcpdf/doc/2-properties/layer.htm http://www.websupergoo.com/helppdfnet/source/5-abcpdf/doc/2-properties/layercount.htm