Update cookies preferences
Promotic

SetBase64String - method of the PmBuffer object

Description:
Writing the data block in the form of a text string in Base64 encoding.
Syntax:
Empty SetBase64String(Long nOffset, String sValue)
Parameters:
nOffset(Long) Specifies the position of written value in the data block.
The whole written value must be inside the data block, or the whole item is added to the end of the data block. The item is written either whole or not read at all.
>= 0 - Index (in bytes, zero-based index) in the data block.
-2 - The whole item is added to the end of the data block. The size of the data block is increased by the written item.
-4 - The internal automatic position is used (see the AutoOffset property). It points behind the last read or written value.
This operation shifts the internal automatic position behind the read/written value.
If the items are read/written one by one then it is not necessary to define the position manually, but it is better to use this automated positioning.
sValue(String) Text string in Base64 encoding that is being written.
Note:
This method is also functional in Web panels.
See also:
Example:
JavaScriptSelect and copy to clipboard

var oBuf = Pm.CreatePmBuffer();
var s1 = "8BC9DEACD79811E4B374540000270300";
oBuf.SetBase64String(-2, s1);
oBuf.AutoOffset = 0;
var val = oBuf.GetBase64String(-4);

History:
Pm9.00.04: Created
PROMOTIC 9.0.28 SCADA system documentation MICROSYS, spol. s r.o.

Send page remarkContact responsible person
© MICROSYS, spol. s r.o.