Office中国论坛/Access中国论坛

标题: 【转载】VSTO Check Cell is In Edit Mode or Not [打印本页]

作者: faunus    时间: 2014-3-25 22:47
标题: 【转载】VSTO Check Cell is In Edit Mode or Not
  1. private bool isInCellEditingMode()
  2.         {
  3.             bool flag = false;
  4.             try
  5.             {
  6.                 app.DisplayAlerts = false; //This will throw an Exception if Excel is in Cell Editing Mode
  7.             }
  8.             catch (Exception)
  9.             {
  10.                 flag = true;
  11.             }
  12.             return flag;
  13.         }
复制代码







欢迎光临 Office中国论坛/Access中国论坛 (http://www.office-cn.net/) Powered by Discuz! X3.3