System::Text::Decoder::GetCharCount method
Contents
[
Hide
]Decoder::GetCharCount(ArrayPtr<uint8_t>, int, int) method
Gets the number of characters needed to decode a buffer.
virtual int System::Text::Decoder::GetCharCount(ArrayPtr<uint8_t> bytes, int index, int count)
Parameter | Type | Description |
---|---|---|
bytes | ArrayPtr<uint8_t> | Bytes to decode. |
index | int | Buffer offset. |
count | int | Number of bytes to decode. |
ReturnValue
Number of characters required to decode the buffer.
See Also
- Typedef ArrayPtr
- Class Decoder
- Namespace System::Text
- Library Aspose.Font for C++
Decoder::GetCharCount(ArrayPtr<uint8_t>, int, int, bool) method
Gets the number of characters needed to decode a buffer.
virtual int System::Text::Decoder::GetCharCount(ArrayPtr<uint8_t> bytes, int index, int count, bool flush)
Parameter | Type | Description |
---|---|---|
bytes | ArrayPtr<uint8_t> | Bytes to decode. |
index | int | Buffer offset. |
count | int | Number of bytes to decode. |
flush | bool | If true, cleans internal decoder state after calculation. |
ReturnValue
Number of characters required to decode the buffer.
See Also
- Typedef ArrayPtr
- Class Decoder
- Namespace System::Text
- Library Aspose.Font for C++
Decoder::GetCharCount(const uint8_t *, int, bool) method
Gets the number of characters needed to decode a buffer.
virtual int System::Text::Decoder::GetCharCount(const uint8_t *bytes, int count, bool flush)
Parameter | Type | Description |
---|---|---|
bytes | const uint8_t * | Bytes to decode. |
count | int | Number of bytes to decode. |
flush | bool | If true, cleans internal decoder state after calculation. |
ReturnValue
Number of characters required to decode the buffer.
See Also
- Class Decoder
- Namespace System::Text
- Library Aspose.Font for C++