Beispiel #1
0
 public static void insertFileCalculateEstCost(WordMethods wm)
 {
     wm.goToBookmark("estcostfile");
     wm.insertFile(pathToFolderWithFiles + "est_cost.doc");
 }
Beispiel #2
0
 private static void insertWorkSchedulesTable(WordMethods wm, int rowsCount, int colsCount)
 {
     wm.goToBookmark("w1");
     wm.insertTable(rowsCount, colsCount, false);
 }
Beispiel #3
0
 private static void insertEstimatedCostTable(WordMethods wm, int rowsCount, int colsCount)
 {
     wm.goToBookmark("w2");
     wm.insertTable(rowsCount, colsCount, true);
 }
Beispiel #4
0
 public static void goToBookmark(WordMethods wm, string bookmarksName)
 {
     wm.goToBookmark(bookmarksName);
 }