Manifest.getDocumentDescription Method¶
Module: Manifest
Definition¶
Gets the description of the document.
get_document_description(self, language: str) -> str
Parameters
language
strin The expected language.
Returns
str
The description of the document.
Exceptions
An error has occurred during Bioseal Library execution.
String getDocumentDescription(String? language)
Parameters
language
Stringin The expected language.
Returns
String
The description of the document.
Exceptions
An error has occurred during Bioseal Library execution.
public string GetDocumentDescription(string language)
Parameters
language
stringin The expected language.
Returns
string
The description of the document.
Exceptions
An error has occurred during Bioseal Library execution.
public String getDocumentDescription(String language) throws BiosealException
Parameters
language
Stringin The expected language.
Returns
String
The description of the document.
Exceptions
An error has occurred during Bioseal Library execution.
public func getDocumentDescription(language: String) throws -> String
Parameters
language
Stringin The expected language.
Returns
String
The description of the document.
Exceptions
An error has occurred during Bioseal Library execution.
int id3BiosealManifest_GetDocumentDescription (
ID3_BIOSEAL_MANIFEST hManifest,
const char * language,
char * documentDescription,
int * documentDescriptionSize)
Parameters
hManifest
ID3_BIOSEAL_MANIFESTin Handle to the Manifest object.language
const char *in The expected language.documentDescription
char *out The description of the document.documentDescriptionSize
int *in Size of the ‘documentDescription’ buffer. Receives the minimum required buffer size to hold the ‘documentDescription’ string if the given one is too small (including the terminating NULL character), otherwise receives the number of characters in ‘documentDescription’ (excluding terminating NULL character).
Returns