Manifest.getDocumentDescription Method¶
Module: Manifest
Definition¶
Gets the description of the document.
get_document_description(self, language: str) -> str
Parameters
languagestrin The expected language.
Returns
strThe description of the document.
Exceptions
An error has occurred during Bioseal Library execution.
String getDocumentDescription(String? language)
Parameters
languageStringin The expected language.
Returns
StringThe description of the document.
Exceptions
An error has occurred during Bioseal Library execution.
public string GetDocumentDescription(string language)
Parameters
languagestringin The expected language.
Returns
stringThe description of the document.
Exceptions
An error has occurred during Bioseal Library execution.
public String getDocumentDescription(String language) throws BiosealException
Parameters
languageStringin The expected language.
Returns
StringThe description of the document.
Exceptions
An error has occurred during Bioseal Library execution.
public func getDocumentDescription(language: String) throws -> String
Parameters
languageStringin The expected language.
Returns
StringThe 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
hManifestID3_BIOSEAL_MANIFESTin Handle to the Manifest object.languageconst char *in The expected language.documentDescriptionchar *out The description of the document.documentDescriptionSizeint *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