Print Library, Svg Library, Utils Library, XYPlots
This commit is contained in:
@@ -1,9 +1,4 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using VEPROMS.CSLA.Library;
|
||||
using System.Collections.Generic;
|
||||
using iTextSharp.text;
|
||||
|
||||
|
||||
@@ -11,9 +6,11 @@ namespace Volian.Print.Library
|
||||
{
|
||||
public class PDFPageSize
|
||||
{
|
||||
// C2020-002 paper size is now set in the format files - this class is use to select the page size that PROMS should be using
|
||||
private static Dictionary<string, Rectangle> dicPDFPageSize = new Dictionary<string, Rectangle>();
|
||||
private static Dictionary<string, int> dicPDFPageSizePnts = new Dictionary<string, int>();
|
||||
// C2020-002 paper size is now set in the format files - this class is use to select the page size that PROMS should be using
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0044:Add readonly modifier", Justification = "Keeping Collections Not ReadOnly")]
|
||||
private static Dictionary<string, Rectangle> dicPDFPageSize = new Dictionary<string, Rectangle>();
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0044:Add readonly modifier", Justification = "Keeping Collections Not ReadOnly")]
|
||||
private static Dictionary<string, int> dicPDFPageSizePnts = new Dictionary<string, int>();
|
||||
private static void BuildPDFPageSizeDic()
|
||||
{
|
||||
// the page size is set in the format files using a string description i.e.: <PDFPageSize PaperSize="LETTER" />
|
||||
|
||||
Reference in New Issue
Block a user