How to get the Duration of a Sample?
-
Does anyone please know how to get the duration of a Sample? Thanks!
-
@clevername27 Assuming you already have the reference to the sample you can get some properties from it such as:
s.get(Sampler.SampleStart); s.get(Sampler.SampleEnd);
-
@d-healey Brilliant - I hadn't thought of that - thanks!!!
-