From e30a356c857907302e5403565d4f3932fd64610e Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Wed, 12 Feb 2020 09:01:28 +0100 Subject: [PATCH] refresh typo --- SteamWareLib/devInfoParam.cs | 144 +++++++++++++++++------------------ 1 file changed, 72 insertions(+), 72 deletions(-) diff --git a/SteamWareLib/devInfoParam.cs b/SteamWareLib/devInfoParam.cs index f1044ff..04e1cbf 100644 --- a/SteamWareLib/devInfoParam.cs +++ b/SteamWareLib/devInfoParam.cs @@ -1,79 +1,79 @@ namespace SteamWare { + /// + /// classe gestione parametri device per stampa + /// + public class devInfoParam + { /// - /// classe gestione parametri deviceper stampa + /// creazione oggetto parametri per stampa /// - public class devInfoParam + /// + /// + /// + /// + /// + /// + /// + public devInfoParam(string _OutputFormat, string _PageHeight, string _PageWidth, string _MarginLeft, string _MarginRight, string _MarginTop, string _MarginBottom) { - /// - /// creazione oggetto parametri per stampa - /// - /// - /// - /// - /// - /// - /// - /// - public devInfoParam(string _OutputFormat, string _PageHeight, string _PageWidth, string _MarginLeft, string _MarginRight, string _MarginTop, string _MarginBottom) - { - OutputFormat = _OutputFormat; - PageHeight = _PageHeight; - PageWidth = _PageWidth; - MarginLeft = _MarginLeft; - MarginRight = _MarginRight; - MarginTop = _MarginTop; - MarginBottom = _MarginBottom; - } - /// - /// formato output - /// - public string OutputFormat { get; set; } - /// - /// altezza - /// - public string PageHeight { get; set; } - /// - /// larghezza - /// - public string PageWidth { get; set; } - /// - /// margine Sx - /// - public string MarginLeft { get; set; } - /// - /// margine Dx - /// - public string MarginRight { get; set; } - /// - /// margine Top - /// - public string MarginTop { get; set; } - /// - /// margine Bottom - /// - public string MarginBottom { get; set; } - - /// - /// Gets the XML parameter. - /// - /// - /// The XML parameter. - /// - public string xmlParam - { - get - { - return string.Format("" + - " {0}" + - " {1}" + - " {2}" + - " {3}" + - " {4}" + - " {5}" + - " {6}" + - "", OutputFormat, PageWidth, PageHeight, MarginTop, MarginLeft, MarginRight, MarginBottom); - } - } + OutputFormat = _OutputFormat; + PageHeight = _PageHeight; + PageWidth = _PageWidth; + MarginLeft = _MarginLeft; + MarginRight = _MarginRight; + MarginTop = _MarginTop; + MarginBottom = _MarginBottom; } + /// + /// formato output + /// + public string OutputFormat { get; set; } + /// + /// altezza + /// + public string PageHeight { get; set; } + /// + /// larghezza + /// + public string PageWidth { get; set; } + /// + /// margine Sx + /// + public string MarginLeft { get; set; } + /// + /// margine Dx + /// + public string MarginRight { get; set; } + /// + /// margine Top + /// + public string MarginTop { get; set; } + /// + /// margine Bottom + /// + public string MarginBottom { get; set; } + + /// + /// Gets the XML parameter. + /// + /// + /// The XML parameter. + /// + public string xmlParam + { + get + { + return string.Format("" + + " {0}" + + " {1}" + + " {2}" + + " {3}" + + " {4}" + + " {5}" + + " {6}" + + "", OutputFormat, PageWidth, PageHeight, MarginTop, MarginLeft, MarginRight, MarginBottom); + } + } + } }