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:
@@ -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
|
||||
{
|
||||
|
Reference in New Issue
Block a user