Skip to content

Latest commit

 

History

History
84 lines (72 loc) · 1.95 KB

File metadata and controls

84 lines (72 loc) · 1.95 KB
title defaultcollelem | 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.defaultcollelem
dev_langs
C++
helpviewer_keywords
defaultcollelem attribute
ms.assetid 3dbbd293-8b83-4f70-a36b-64cc1d0b6713
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

defaultcollelem

Used for Visual Basic code optimization.

Syntax

  
[defaultcollelem]  
  

Remarks

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

Example

The following code shows an interface method using the defaultcollelem attribute:

// cpp_attr_ref_defaultcollelem.cpp  
// compile with: /LD  
#include <unknwn.h>  
[module(name="MyLib")];  
[object, uuid("00000000-0000-0000-0000-000000000001")]  
__interface IMyForm   
{     
   [propget, id(1), bindable, defaultcollelem, displaybind,   
   defaultbind, requestedit] HRESULT P1([out, retval] long *nSize);  
   [propput, id(1), bindable, defaultcollelem, displaybind,   
   defaultbind, requestedit] HRESULT P1([in] long nSize);  
};  

Requirements

Attribute Context

Applies to Interface method
Repeatable No
Required attributes None
Invalid attributes None

For more information, see Attribute Contexts.

See Also

IDL Attributes
Method Attributes