Log.exportToHtml Method¶
Module: Log
Definition¶
Exports a representation of the log, in HTML format.
export_to_html(self, debug: bool) -> str
Parameters
debug
boolin Indicates whether debug information is added to the log.
Returns
str
The result.
Exceptions
An error has occurred during Bioseal Library execution.
String exportToHtml(bool debug)
Parameters
debug
boolin Indicates whether debug information is added to the log.
Returns
String
The result.
Exceptions
An error has occurred during Bioseal Library execution.
public string ExportToHtml(bool debug)
Parameters
debug
boolin Indicates whether debug information is added to the log.
Returns
string
The result.
Exceptions
An error has occurred during Bioseal Library execution.
public String exportToHtml(boolean debug) throws BiosealException
Parameters
debug
booleanin Indicates whether debug information is added to the log.
Returns
String
The result.
Exceptions
An error has occurred during Bioseal Library execution.
public func exportToHtml(debug: Bool) throws -> String
Parameters
debug
Boolin Indicates whether debug information is added to the log.
Returns
String
The result.
Exceptions
An error has occurred during Bioseal Library execution.
int id3BiosealLog_ExportToHtml (
ID3_BIOSEAL_LOG hLog,
bool debug,
char * result,
int * resultSize)
Parameters
hLog
ID3_BIOSEAL_LOGin Handle to the Log object.debug
boolin Indicates whether debug information is added to the log.result
char *out The result.resultSize
int *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