真的被国内代理恶心到了
没办法搞论文必备
只好去国外网站上下载咯 ~
CSS选择器 JQuery选择器
d3动态效果
ios safari 智能缩放
reference:
Apple DEV
ios safari input失焦问题
reference:
it165
墩柱
reference:
sohu
创建自适应族
reference:
cnBlog
添加BIM自定义属性
reference:
tuituisoft
AutoCAD批量打印小问题
在外部程序通过COM接口做AutoCAD二次开发的时候,有一个需要注意的地方。
kLay.SetWindowToPlot(New Double() {LL(0), LL(1)}, New Double() {UR(0), UR(1)})
//LL UR 为 左下 右上 两个点坐标数组
kLay.PlotType = AcPlotType.acWindow
//SetWindowToPlot 必须在 PlotType 前
//kLay 类型可以是 AcadLayout 或 AcadPlotConfiguration
Reference:
CSDN Blog
Visual Studio查看重载
问题背景:时常需要查看某个函数的其他重载情况,譬如要看其他的传入参数什么的,就需要把所有重载打开看。
解决方法:
1. 将光标插入函数括号中
2. Ctrl + Shift + Space
3. Press UP/DOWN Key
Reference:
StackOverFlow