public InputFileParameter(string value,
                           CustomWkHtmlArgsParameter customWkHtmlPageArgs,
                           HeaderFilePathParameter headerFilePath,
                           FooterFilePathParameter footerFilePath,
                           ZoomParameter zoom)
     : base("", quoteValue: true)
 {
     this.Enabled = true;
     this.Value   = value;
     this.CustomWkHtmlPageArgs = customWkHtmlPageArgs;
     this.HeaderFilePath       = headerFilePath;
     this.FooterFilePath       = footerFilePath;
     this.Zoom = zoom;
 }
 public CoverFilePathParameter(string value, CustomWkHtmlArgsParameter customWkHtmlCoverArgs) : base("cover", quoteValue: true)
 {
     this.Enabled = value != null;
     this.Value   = value;
     this.CustomWkHtmlCoverArgs = customWkHtmlCoverArgs;
 }