Exemple #1
0
 /// <summary>
 /// 启用或禁用全字匹配
 /// </summary>
 /// <param name="bEnable">全字匹配状态</param>
 public static void CF_SetMatchWholeWord(bool bEnable)
 {
     try
     {
         if (CP_Platform == EPlatform.X86)
         {
             ModEverything32.Everything_SetMatchWholeWord(bEnable);
         }
         else
         {
             ModEverything64.Everything_SetMatchWholeWord(bEnable);
         }
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }