raw_property_prefixes import attribute
C++ Specific
Specifies alternate prefixes for three property methods.
Syntax
#import type-library raw_property_prefixes( "GetPrefix" , "PutPrefix" , "PutRefPrefix" )
Parameters
GetPrefix
Prefix to use for the propget
methods.
PutPrefix
Prefix to use for the propput
methods.
PutRefPrefix
Prefix to use for the propputref
methods.
Remarks
By default, low-level propget
, propput
, and propputref
methods are exposed by member functions named using prefixes of get_
, put_
, and putref_
, respectively. These prefixes are compatible with the names used in the header files generated by MIDL.
END C++ Specific