Getselection能不能接受keyword?

Posted swtool

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Getselection能不能接受keyword?相关的知识,希望对你有一定的参考价值。

这个玩意绝对是个坑,CAD对Getselection的支持并不充分,需要通过keywordinput事件来弄,比较麻烦,而且很容易出问题。

所以我的做法是,不使用,哈哈!

下面这个是kean的代码:

    [CommandMethod("SELKW")]

    public void GetSelectionWithKeywords()
    
      Document doc = AcadApp.DocumentManager.MdiActiveDocument;
      Editor ed = doc.Editor;
      PromptSelectionOptions pso = new PromptSelectionOptions();
      pso.Keywords.Add("FIrst");
      pso.Keywords.Add("Second");
      string kws = pso.Keywords.GetDisplayString(true);
      pso.MessageForAdding = "\\nAdd objects to selection or " + kws;
      pso.MessageForRemoval = "\\nRemove objects from selection or " + kws;
      pso.KeywordInput +=
        delegate (object sender, SelectionTextInputEventArgs e)
        
          ed.WriteMessage("\\nKeyword entered: 0", e.Input);
        ;
      PromptSelectionResult psr = ed.GetSelection(pso);
      if (psr.Status == PromptStatus.OK)
      
        ed.WriteMessage("\\n0 object1 selected.",
          psr.Value.Count,
          psr.Value.Count == 1 ? "" : "s"
        );
      
    

 

exchange 2016 能发送邮件,不能接受邮件

大家好,
问题现象是大面积的,因为我们是做服务器运维的,又不是做桌面的。
能发不能收,而且outlook客户端显示连接正常,没有任何报错。

直接登录服务器,找到这个服务,叫Microsoft Exchange Mailbox Transport Delivery ,如果没有启动,就启动一下,如果显示Running,再重启一下这个服务。

为啥我知道是这个服务呢,你必须有一个猪一样的队友,重启服务器不带检查的。这种错误都是低级的,一点技术含量都没有。

下次分享一个修得邮件数据库的操作,也就是你怎么也mount不上你的邮件数据库。

连续被猪队友出错,排错排得都不高级了。

技术分享图片

以上是关于Getselection能不能接受keyword?的主要内容,如果未能解决你的问题,请参考以下文章

window.getSelection和document.selection getSelection

makefile能不能接受输入参数

跨浏览器GETSELECTION BOOKMARKLET

document.selection window.getSelection()

酶玩笑 window.getSelection() 不起作用

Window.getSelection