Поделиться через


nonbrowsable

Indicates that an interface member should not be displayed in a property browser.

[nonbrowsable]

Заметки

The nonbrowsable C++ attribute has the same functionality as the nonbrowsable MIDL attribute.

Пример

// cpp_attr_ref_nonbrowsable.cpp
// compile with: /LD
#include <unknwn.h>
[module(name="MyLib")];

[object, helpstring("help string"), helpstringcontext(1), 
uuid="11111111-1111-1111-1111-111111111111"] 
__interface IMyI
{
   [nonbrowsable] HRESULT xx();
};

Требования

Attribute Context

Applies to

Interface method

Repeatable

No

Required attributes

None

Invalid attributes

None

For more information about the attribute contexts, see Attribute Contexts.

См. также

Основные понятия

IDL Attributes

Method Attributes

ATL Samples