defaultvalue
容許指定型別的選擇性參數的預設值。
[ defaultvalue= value ]
參數
- value
參數的預設值。
備註
預設值] C++ 屬性具有相同的功能,為預設值] MIDL 屬性。
範例
下列程式碼會顯示介面方法使用預設值] 屬性:
// cpp_attr_ref_defaultvalue.cpp
// compile with: /LD
#include <windows.h>
[export] typedef long HRESULT;
[export, ptr, string] typedef unsigned char * MY_STRING_TYPE;
[ uuid("479B29EE-9A2C-11D0-B696-00A0C903487A"),
dual, oleautomation,
helpstring("IFireTabCtrl Interface"),
helpcontext(122), pointer_default(unique) ]
__interface IFireTabCtrl : IDispatch {
[bindable, propget] HRESULT get_Size([out, retval, defaultvalue("33")] long *nSize);
[bindable, propput] HRESULT put_Size([in] int nSize);
};
[ module(name="ATLFIRELib", uuid="479B29E1-9A2C-11D0-B696-00A0C903487A",
version="1.0", helpstring="ATLFire 1.0 Type Library") ];
需求
屬性內容
適用於 |
介面參數 |
可重複 |
否 |
必要的屬性 |
None |
無效的屬性 |
None |
如需詳細資訊,請參閱屬性內容。