Skip to content

Latest commit

 

History

History
37 lines (32 loc) · 974 Bytes

property-visual-c-syntax-index-with-sharpimport.md

File metadata and controls

37 lines (32 loc) · 974 Bytes
title description author ms.author ms.date ms.service ms.subservice ms.topic helpviewer_keywords dev_langs apitype
Property (Visual C++ Syntax Index with #import)
Property (Visual C++ Syntax Index with #import)
rothja
jroth
01/19/2017
sql
ado
reference
Property collection [ADO], Visual C++ syntax index with #import
C++
COM

Property (Visual C++ Syntax Index with #import)

Properties

long GetAttributes( );  
void PutAttributes( long plAttributes );  
__declspec(property(get=GetAttributes,put=PutAttributes)) long  
    Attributes;  
  
_bstr_t GetName( );  
__declspec(property(get=GetName)) _bstr_t Name;  
  
enum DataTypeEnum GetType( );  
__declspec(property(get=GetType)) enum DataTypeEnum Type;  
  
_variant_t GetValue( );  
void PutValue( const _variant_t & pval );  
__declspec(property(get=GetValue,put=PutValue)) _variant_t Value;  

See Also

Property Object (ADO)