DateTime.toString Method¶
Module: DateTime
Definition¶
Convert the date/time to a string.
to_string(self) -> str
Returns
strAutomatic format is YYYY-MM-DDTHH:MM:SS, YYYY-MM-DD or HH:MM:SS
Exceptions
An error has occurred during Bioseal Library execution.
String toString()
Returns
StringAutomatic format is YYYY-MM-DDTHH:MM:SS, YYYY-MM-DD or HH:MM:SS
Exceptions
An error has occurred during Bioseal Library execution.
public override string ToString()
Returns
stringAutomatic format is YYYY-MM-DDTHH:MM:SS, YYYY-MM-DD or HH:MM:SS
Exceptions
An error has occurred during Bioseal Library execution.
public String toString() throws BiosealException
Returns
StringAutomatic format is YYYY-MM-DDTHH:MM:SS, YYYY-MM-DD or HH:MM:SS
Exceptions
An error has occurred during Bioseal Library execution.
public func toString() throws -> String
Returns
StringAutomatic format is YYYY-MM-DDTHH:MM:SS, YYYY-MM-DD or HH:MM:SS
Exceptions
An error has occurred during Bioseal Library execution.
int id3BiosealDateTime_ToString (
ID3_BIOSEAL_DATE_TIME hDateTime,
char * result,
int * resultSize)
Parameters
hDateTimeID3_BIOSEAL_DATE_TIMEin Handle to the DateTime object.resultchar *out Automatic format is YYYY-MM-DDTHH:MM:SS, YYYY-MM-DD or HH:MM:SSresultSizeint *in Size of the ‘result’ buffer. Receives the minimum required buffer size to hold the ‘result’ string if the given one is too small (including the terminating NULL character), otherwise receives the number of characters in ‘result’ (excluding terminating NULL character).
Returns