setTimeZoneOffset method
- int offsetInSeconds
Set the time zone offset in seconds.
param offsetInSeconds The time zone offset in seconds. throws BiosealException An error has occurred during Bioseal Library execution.
Implementation
void setTimeZoneOffset(int offsetInSeconds) {
var err = biosealSDK.id3BiosealField_SetTimeZoneOffset(_pHandle.value, offsetInSeconds);
if (err != BiosealError.success.value) {
throw BiosealException(err);
}
}