BASS.NET API for the Un4seen BASS Audio Library

MidiSysExMessageMessageWrite16Wave Method (Int32, Int16)

BASS.NET API for the Un4seen BASS Audio Library
Writes a 16-bit waveform value (3 bytes) to the Message data buffer (left-justified).

Namespace:  radio42.Multimedia.Midi
Assembly:  Bass.Net (in Bass.Net.dll) Version: 2.4.17.5
Syntax

public void MessageWrite16Wave(
	ref int offset,
	short value
)

Parameters

offset
Type: SystemInt32
The zero-base offset (index) of the Message data buffer where to start writing (the offset will be automatically be increased by the number of bytes written).
value
Type: SystemInt16
The short value (between -32768 and 32767) to write to the given position representing the waveform point.
Remarks

You first need to initialize the Message data buffer with CreateBuffer(Int32) before being able to write to the buffer.

Do not call this method after you have prepared the message with Prepare, since after calling Prepare this method would have no effect.

See Also

Reference