CComBSTR::ByteLength
Retorna o número de bytes em m_str, excluindo o caractere de terminação zero.
unsigned int ByteLength( ) const throw( );
Valor de retorno
O comprimento do membro de m_str em bytes.
Comentários
Retorna 0 se m_str é NULO.
Exemplo
// string with 11 chars (22 bytes)
CComBSTR bstrTemp(OLESTR("Hello World"));
unsigned int len = bstrTemp.ByteLength();
ATLASSERT(len == 22);
Requisitos
Cabeçalho: atlbase.h