CreateTypedArray
CDocBuilderValue CreateTypedArray(sBuffer: unsigned char*, nLength: const int&, bExternalize: const bool&)
Description
Creates a Uint8Array value, an analogue of Uint8Array
in JS.
Please note, that for the
.docbuilder
file theCDocBuilderContext.CreateTypedArray
method is not used.
Parameters
- sBuffer
unsigned char*
- The array buffer.
- nLength
const int&
- The array length.
- bExternalize
const bool&
- Specifies if the application releases the memory after freeing Uint8Array (
true
). If this parameter isfalse
, then the memory will be released automatically. In this case, the buffer must be created with the AllocMemoryTypedArray method.
Example
C++
std::wstring sWorkDirectory = NSUtils::GetBuilderDirectory();
CDocBuilder::Initialize(sWorkDirectory.c_str());
CDocBuilder oBuilder;
CContext oContext = oBuilder.GetContext();
unsigned char* sBuffer = oContext.AllocMemoryTypedArray(1500);
CValue oTypedArray = oContext.CreateTypedArray(sBuffer, 3, false);
CDocBuilder::Dispose();