nonextensible
指定的IDispatch實作包括僅屬性以及方法介面描述中所列,並不能與其他成員在執行階段擴充。
[nonextensible]
備註
Nonextensible C++ 屬性具有相同的功能,為 nonextensible MIDL 屬性。
使用 nonextensible 也需要 oleautomation 屬性。
範例
下列程式碼範例將示範一個用法 nonextensible 屬性:
// cpp_attr_ref_nonextensible.cpp
// compile with: /LD
#include "unknwn.h"
[module(name="ATLFIRELib")];
[export] typedef long HRESULT;
[dual, nonextensible, ms_union, oleautomation,
uuid("00000000-0000-0000-0000-000000000001")]
__interface IFireTabCtrl
{
HRESULT procedure (int i);
};
需求
屬性內容
適用於 |
interface |
可重複 |
否 |
必要的屬性 |
雙重 和 oleautomation,或 分配介面 |
無效的屬性 |
None |
如需有關屬性內容的詳細資訊,請參閱屬性內容。