|
马上注册,结交更多同行朋友,交流,分享,学习。
您需要 登录 才可以下载或查看,没有帐号?注册
x
我嘗試用caa來拿取 product\component 的顏色, 我是用了 CATVisPropertiesValues::GetPropertiesAtt() 這個function
CATVisPropertiesValues propertyOnComp;
hr = pIVisProperties->GetPropertiesAtt(propertyOnComp, CATVPColor ,CATVPAsm);
unsigned int r, g, b;
hr = propertyOnComp.GetColor(r, g, b);
以上的code可以正確拿取product\component 的顏色, 但是當product\component 是NoColor 時, (r,g,b) = (255,255,255), 即是與白色的rgb一樣, 所以我便不知道, 這是白色還是真的是NoColor.
請問大家有没有什麼方法來檢定product\component 是NoColor 呢?
謝謝 |
|