共用方式為


CanAddNonAttributed

更新:2007 年 11 月

表示 ATL 專案支援非屬性化物件。

 function CanAddNonAttributed( );

傳回值

如果專案支援非屬性化和屬性化 ATL 物件則為 true;如果專案只支援屬性化專案則為 false

備註

呼叫此函式來表示專案是否同時支援非屬性化和屬性化物件。

範例

// Check if attributed project using CanAddNonAttributed
window.external.Load(document);
if (IsAttributedProject(window.external))
{
   ATTRIBUTED.checked = true;
   if (!CanAddNonAttributed())
      ATTRIBUTED.disabled = true;
}

請參閱

工作

建立自訂精靈

概念

使用 Common JScript 函式自訂 C++ 精靈

設計精靈

參考

CanAddClass

其他資源

C++ 精靈的 JScript 函式

Attributed Programming Concepts