CreateTypedArray
CDocBuilderValue^ CreateTypedArray(aBuffer: array | <Byte>^)
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
- aBuffer
array | <Byte>^
- The array buffer.
Example
.Net
string workDirectory = "C:/Program Files/ONLYOFFICE/DocumentBuilder";
CDocBuilder.Initialize(workDirectory);
CDocBuilder oBuilder = new CDocBuilder();
CContext oContext = oBuilder.GetContext();
array<System::Byte>^ aBuffer = gcnew array<Byte>(1500);
CValue oTypedArray = oContext.CreateTypedArray(aBuffer);
CDocBuilder.Destroy();