Object.Data (gb)

Static Function Data ( Object As Object ) As Pointer

Desde 3.19

Return the address of the data associated with an object.

If the object is then return
A class The address of the static data of the class.

It is normally the address of the first public static variable.
An array The address of the first element of the array.

If the array is void, then NULL is returned.
A structure The address of the first field of the structure.
Any other object The address of the object dynamic data.

It is normally the address of the first public dynamic variable.