Remove unused parameter from PromsPrinter constructor

Set the offset of the BackGround (Overlay) depending on the source of the background.  If the background source is 32 Bit set the offset to zero.
Add DebugPagination output for blank pages
Add DebugPagination output for MSWord Sections
Add DbeugPagination output for Foldout pages
Only adjust wordwrap if background is not 32Bit output
Added Back32BitPROMS boolean property to determine if the background is 32 Bit output
This commit is contained in:
Rich
2012-07-25 21:46:29 +00:00
parent 66f9ef6f23
commit dbdb1d6f7d
3 changed files with 28 additions and 14 deletions

View File

@@ -937,6 +937,14 @@ namespace Volian.Svg.Library
return _BackgroundReader;
}
}
public bool Back32BitPROMS
{
get
{
if (BackgroundReader == null) return false;
return BackgroundReader.Info["Producer"].ToString().StartsWith("iTextSharp");
}
}
private string _BackgroundFile = null;
public string BackgroundFile
{