Nóta
Aðgangur að þessari síðu krefst heimildar. Þú getur prófað aðskrá þig inn eða breyta skráasöfnum.
Aðgangur að þessari síðu krefst heimildar. Þú getur prófað að breyta skráasöfnum.
Microsoft Specific
Constructs a copy of the encapsulated BSTR.
Syntax
BSTR copy( bool fCopy = true ) const;
Parameters
fCopy
If true, copy returns a copy of the contained BSTR, otherwise copy returns the actual BSTR.
Remarks
Returns a newly allocated copy of the encapsulated BSTR object, or the encapsulated object itself, depending on the parameter.
Example
STDMETHODIMP CAlertMsg::get_ConnectionStr(BSTR *pVal){ // m_bsConStr is _bstr_t
*pVal = m_bsConStr.copy();
}
END Microsoft Specific