Guest User

Untitled

a guest
Feb 13th, 2020
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.25 KB | None | 0 0
  1. IApplication application = excelEngine.Excel;
  2. application.DefaultVersion = ExcelVersion.Excel2013;
  3. IWorkbook workbook = application.Workbooks.Create(1);
  4. IWorksheet worksheet = workbook.Worksheets[0];
  5.  
  6. worksheet.SetValueRowCol("hello world", row, col);
Advertisement
Add Comment
Please, Sign In to add comment