Skip to content

Latest commit

 

History

History
53 lines (40 loc) · 1.17 KB

nonbrowsable.md

File metadata and controls

53 lines (40 loc) · 1.17 KB
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: nonbrowsable
nonbrowsable (C++ COM Attribute)
10/02/2018
vc-attr.nonbrowsable
nonbrowsable attribute
e71a98e7-4b65-454a-9829-342b9f2a84be

nonbrowsable

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

Syntax

[nonbrowsable]

Remarks

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

Example

// 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();
};

Requirements

Attribute context Value
Applies to Interface method
Repeatable No
Required attributes None
Invalid attributes None

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

See also

IDL Attributes
Method Attributes