How to set a time step in bioformat Matlab

Can you control the time step between different images in Matlab using Bioformats java library?
The OME community
https://www.openmicroscopy.org/community/
https://www.openmicroscopy.org/community/viewtopic.php?f=13&t=5716
data=bfopen(path_to_file);
data{4}.getPlaneDeltaT(0,0); % Read the time stamp of the first plane of the first series
data{4}.getPlaneDeltaT(0,1); % Read the time stamp of the second plane of the first series
...
metadata.setPlaneDeltaT(java.lang.Double(.1), 0,0); % Set the time stamp of the first plane
metadata.setPlaneDeltaT(java.lang.Double(1.1), 0,1); % Read the time stamp of the second plane
...