예제 #1
0
 public AxPageUploadData(EAxPageUploadAction act, string filepath, EAxFileType filetype, int pos, bool splitimg, int subpages)
 {
     this.act      = act;
     this.filepath = filepath;
     this.filetype = filetype;
     this.pos      = pos;
     this.splitimg = splitimg;
     this.subpages = subpages;
 }
예제 #2
0
 public AxDocument(string dsn, string filepath, EAxFileType filetype, bool ignoreDls, bool ignoreDupindex, bool splitimg, string subpages)
 {
     this.Dsn            = dsn;
     this.Filepath       = filepath;
     this.Filetype       = filetype;
     this.IgnoreDls      = ignoreDls;
     this.IgnoreDupindex = ignoreDupindex;
     this.Splitimg       = splitimg;
     this.Subpages       = subpages;
 }
 public AxDocumentCreationData(int appId, string dsn,
                               string filePath, EAxFileType fileType, bool ignoreDls,
                               bool ignoreDupIndex, bool splitimg, int subpages)
 {
     this.appId          = appId;
     this.dsn            = dsn;
     this.filePath       = filePath;
     this.fileType       = fileType;
     this.ignoreDls      = ignoreDls;
     this.ignoreDupIndex = ignoreDupIndex;
     this.splitimg       = splitimg;
     this.subpages       = subpages;
 }