02 2020 档案
摘要:QQ群中以为朋友提出这么个需求, 要输出路线上任意一点处切向的方位角, 我就想如果自己写程序的话, 有没有相应的API可以实现呢? 找了半天才找到, 原因是自己的英语不好, API reference里是用Bearing来表示的, 有了这个方法, 自己可以很方便的来实现自己的需求, 测试代码就不贴了
阅读全文
摘要:How to create a hyperlink on an entity with AutoCAD .NET API? 原帖在此 Entities in AutoCAD can be associated with hyperlinks. Users can visit the referenc
阅读全文
摘要:OpenFileDialog ofd = new OpenFileDialog(); ofd.Title = "Select PointFiles to import"; ofd.CheckFileExists = true; ofd.Multiselect = true; if (ofd.Show
阅读全文