Partilhar via


CComBSTR::ByteLength

Retorna o número de bytes em m_str, excluindo o caractere nulo de terminação.

unsigned int ByteLength( ) const throw( );

Valor de retorno

O comprimento do m_str membro 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: atlcomcli.h

Consulte também

Referência

Classe CComBSTR

CComBSTR::Length

Outros recursos

CComBSTR membros