Print Library, Svg Library, Utils Library, XYPlots

This commit is contained in:
2026-07-24 13:36:46 -04:00
parent 06c3136566
commit f67d37801a
68 changed files with 12173 additions and 16618 deletions
+6 -9
View File
@@ -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" />