This commit is contained in:
Kathy Ruffing 2010-10-07 12:51:10 +00:00
parent be2d538f99
commit 7ec1804bf6

View File

@ -650,6 +650,12 @@ namespace Volian.Svg.Library
get { return _Watermark; }
set { _Watermark = value; }
}
private bool _DoZoomOMatic = false;
public bool DoZoomOMatic
{
get { return _DoZoomOMatic; }
set { _DoZoomOMatic = value; }
}
private int _CurrentPageNumber = 0;
public int CurrentPageNumber
{
@ -687,7 +693,7 @@ namespace Volian.Svg.Library
DrawBackground(writer.DirectContentUnder);
DrawPageList(writer.DirectContent);
DrawWatermark(writer.DirectContentUnder);
DrawZoomOMatic(writer.DirectContent);
if(DoZoomOMatic)DrawZoomOMatic(writer.DirectContent);
CurrentPageNumber++;
}
private PdfReader _BackgroundReader = null;