public WordConvertThread(string name, ConvertParams parameters)
 {
     _wordApiFunctions = new WordApiFunctions();
     thread            = new Thread(Func);
     thread.Name       = name;
     thread.Start(parameters);
 }
예제 #2
0
 public WordToPdfThread(string name, WordViewPdfParams parameters)
 {
     _wordApiFunctions = new WordApiFunctions();
     thread            = new Thread(Func);
     thread.Name       = name;
     thread.Start(parameters);
 }