Nota
L'accesso a questa pagina richiede l'autorizzazione. È possibile provare ad accedere o modificare le directory.
L'accesso a questa pagina richiede l'autorizzazione. È possibile provare a modificare le directory.
Microsoft Specific
Constructs a copy of the encapsulated BSTR.
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.
Example
STDMETHODIMP CAlertMsg::get_ConnectionStr(BSTR *pVal){ // m_bsConStr is _bstr_t
*pVal = m_bsConStr.copy();
}
END Microsoft Specific