Difference between revisions of "Buffer:get"
From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>") |
|||
(One intermediate revision by the same user not shown) | |||
Line 4: | Line 4: | ||
=== Description === | === Description === | ||
Gets data from a '''Buffer''' object. | Gets data from a '''Buffer''' object. | ||
− | < | + | <syntaxhighlight lang="lua"> |
(string) = Buffer:get(offset,size) | (string) = Buffer:get(offset,size) | ||
− | </ | + | </syntaxhighlight> |
=== Parameters === | === Parameters === |
Latest revision as of 14:26, 13 July 2023
Available since: Gideros 2020.2
Class: Buffer
Description
Gets data from a Buffer object.
(string) = Buffer:get(offset,size)
Parameters
offset: (number) position in the buffer to get data from optional
size: (number) size of the data to fetch optional
Return values
Returns (string) extracted data