Skip to content

Latest commit

 

History

History
86 lines (72 loc) · 1.94 KB

File metadata and controls

86 lines (72 loc) · 1.94 KB
title uidefault | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-windows
ms.tgt_pltfrm
ms.topic language-reference
f1_keywords
vc-attr.uidefault
dev_langs
C++
helpviewer_keywords
uidefault attribute
ms.assetid 200de0e0-2e34-40a2-bae4-8d485a62264d
caps.latest.revision 9
author mikeblome
ms.author mblome
manager ghogen
translation.priority.ht
cs-cz
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
pl-pl
pt-br
ru-ru
tr-tr
zh-cn
zh-tw

uidefault

Indicates that the type information member is the default member for display in the user interface.

Syntax

  
[uidefault]  
  

Remarks

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

Example

The following code shows a sample of uidefault:

// cpp_attr_ref_uidefault.cpp  
// compile with: /LD  
#include "unknwn.h"  
[module(name="MyLib")];  
  
[object, uuid("9E66A290-4365-11D2-A997-00C04FA37DDB")]  
__interface ICustom{  
   HRESULT Custom([in] long l, [out, retval] long *pLong);  
   [uidefault]HRESULT id0([in] long l);  
   [uidefault]HRESULT id1([in] long l);  
  
   [uidefault, propget] HRESULT get_y(int *y);  
   [uidefault, propput] HRESULT put_y(int y);  
};  

Requirements

Attribute Context

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