This topic has not yet been rated - Rate this topic

setInt32 Method (DataView)

JavaScript - Internet Explorer 10

Sets the Int32 value at the specified byte offset from the start of the view. There is no alignment constraint; multi-byte values may be set at any offset.

dataView.setInt32 (byteOffset, value, littleEndian); 
byteOffset

The place in the buffer at which the value should be retrieved.

value

The value to set.

littleEndian

Optional. If false or undefined, a big-endian value should be written, otherwise a little-endian value should be written.

These methods raise an exception if they would write beyond the end of the view.

The following example shows how to set the first Int32 in the DataView.

var req = new XMLHttpRequest();
    req.open('GET', "http://www.example.com");
    req.responseType = "arraybuffer";
    req.send();

    req.onreadystatechange = function () {
        if (req.readyState === 4) {
            var buffer = req.response;
            var dataView = new DataView(buffer);
            dataView.setInt32(0, 9);
        }
    }

Supported in the Internet Explorer 10 standards document mode. Also supported in Windows Store apps. See Version Information.

Not supported in the following document modes: Quirks, Internet Explorer 6 standards, Internet Explorer 7 standards, Internet Explorer 8 standards, Internet Explorer 9 standards.

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.