中国膜结构网's Archiver
论坛
›
ObjectARX | VC++
› [每日一码] 判断是否在图纸空间
admin
发表于 2024-3-14 20:34:12
[每日一码] 判断是否在图纸空间
BOOL isPaperSpace ()
{
struct resbuf res ;
acedGetVar (采用T("tilemode"), &res) ;
int tilemode =res.resval.rint ;
acedGetVar (采用T("cvport"), &res) ;
int cvport =res.resval.rint ;
return (tilemode == 0 && cvport == 1) ;
}
页:
[1]
查看完整版本:
[每日一码] 判断是否在图纸空间