buffer_get_size(index);
Argument | Description |
---|---|
index | The index of the buffer to get the size of. |
Returns: Real
With this function you can get the size of the given buffer in
bytes.
var temp_buff = buffer_create(buffer_get_size(buff), buffer_fixed, 0);
The above code will create a new buffer and store its index in the local variable "temp_buff", with size of this new buffer being the same as that of the buffer indexed in the variable "buff".