Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. private void Application_SheetChange(object Sh, Range Target)
  2. {
  3. log.Info("Reached Application_SheetChange....!!!");
  4.  
  5. Excel.Worksheet sheet = (Excel.Worksheet)Sh;
  6.  
  7. string changedRange = Target.get_Address(Excel.XlReferenceStyle.xlA1);
  8.  
  9. var input = Target.Value;
  10.  
  11. }
  12.  
  13. // excelRange.Value = contains the specific row and column
  14. // below line inserts data into cell
  15. excelRange.Value = qrcodescanneddata;
  16. currentSheet.Cells[insertAtIndex, i] = finalResultString;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement