nonextensible
IDispatch のインターフェイスを実装の詳細に示すプロパティとメソッドのみを含め実行時のメンバーによって拡張することができないことを指定します。
[nonextensible]
解説
nonextensible C++ 属性に nonextensible の MIDL の属性と同じ機能があります。
nonextensible を使用するとoleautomation の属性が必要です。
使用例
次のコード例 nonextensible の属性の 1 とおりの使用 :
// 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 |
複数回の適用 |
X |
必要な属性 |
double と oleautomationまたは ディスパッチインターフェイス |
無効な属性 |
なし |
属性コンテキストの詳細については、「属性コンテキスト」を参照してください。