Is it possible to get region length?

I just started to use fmod and wanted to use marker & callbacks to trigger in game events which i managed to do.
However i can’t figure out how to get the length or end time of a region.
Is it possible ?

You can get the length of a region when using the FMOD Studio application but not at runtime.

Select the region in the event editor and open the console (window > Console).

region = studio.window.editorCurrent(); // Get the selected region
region.length; // How long the region is
region.position; // The start position of the region
region.position + region.length; // The end position of the region