diff --git a/PROMS/DataLoader/Documents.cs b/PROMS/DataLoader/Documents.cs index ca91b6a7..8903481a 100644 --- a/PROMS/DataLoader/Documents.cs +++ b/PROMS/DataLoader/Documents.cs @@ -84,32 +84,6 @@ namespace DataLoader * "Special Landscape, Elite, 6 lines per inch" */ - if (stype != null) - { - // stype[1] == 'p' or 'P' or '6' 'f' or 'L' get spc = 6 - int lpi = 6; - if (stype[1] == '*') lpi = 8; - else if (stype[1] == '4') lpi = 4; - else if (stype[1] == '7') lpi = 7; - // if need landscape set too: bool landscape = (stype[1] == 'L'); - myWordDoc.SetLineSpacing(lpi); // if need landscape set too: , landscape); ; - } - //string temppath = Path.GetTempFileName(); - /* 16-bit's type[1] used the following codes to represent the respective lpi setting - * - * char far typestr[] = "*pP46f7L"; - * - * char * far printtypes[] = { - * "Compressed, 8 lines per inch", - * "Elite, 6 lines per inch", - * "Pica, 6 lines per inch", - * "Default font, 4 Lines Per Inch", - * "Default font, 6 Lines Per Inch", - * "Compressed 6 LPI", - * "Default font, 7 Lines Per Inch", - * "Special Landscape, Elite, 6 lines per inch" - */ - if (stype != null) { // stype[1] == 'p' or 'P' or '6' 'f' or 'L' get spc = 6