CComBSTR::ByteLength
Vrátí počet bajtů v m_str , s výjimkou ukončujícím znakem null.
unsigned int ByteLength( ) const throw( );
Vrácená hodnota
Délka m_str člena v bajtech.
Poznámky
Vrátí hodnotu 0, pokud m_str je NULL.
Příklad
// string with 11 chars (22 bytes)
CComBSTR bstrTemp(OLESTR("Hello World"));
unsigned int len = bstrTemp.ByteLength();
ATLASSERT(len == 22);
Požadavky
Záhlaví: atlbase.h