Field.containsExtensionByName Method¶
Module: Field
Definition¶
Returns a value indicating whether the field (or one of its child fields) contains an extension with specified name.
contains_extension_by_name(self, extension_name: str) -> bool
Parameters
extension_name
strin A string that identifies the extension.
Returns
bool
A value indicating whether the field (or one of its child fields) contains the specified extension.
Exceptions
An error has occurred during Bioseal Library execution.
bool containsExtensionByName(String? extensionName)
Parameters
extensionName
Stringin A string that identifies the extension.
Returns
bool
A value indicating whether the field (or one of its child fields) contains the specified extension.
Exceptions
An error has occurred during Bioseal Library execution.
public bool ContainsExtensionByName(string extensionName)
Parameters
extensionName
stringin A string that identifies the extension.
Returns
bool
A value indicating whether the field (or one of its child fields) contains the specified extension.
Exceptions
An error has occurred during Bioseal Library execution.
public boolean containsExtensionByName(String extensionName) throws BiosealException
Parameters
extensionName
Stringin A string that identifies the extension.
Returns
boolean
A value indicating whether the field (or one of its child fields) contains the specified extension.
Exceptions
An error has occurred during Bioseal Library execution.
public func containsExtensionByName(extensionName: String) throws -> Bool
Parameters
extensionName
Stringin A string that identifies the extension.
Returns
Bool
A value indicating whether the field (or one of its child fields) contains the specified extension.
Exceptions
An error has occurred during Bioseal Library execution.
int id3BiosealField_ContainsExtensionByName (
ID3_BIOSEAL_FIELD hField,
const char * extensionName,
bool * result)
Parameters
hField
ID3_BIOSEAL_FIELDin Handle to the Field object.extensionName
const char *in A string that identifies the extension.result
bool *out A value indicating whether the field (or one of its child fields) contains the specified extension.
Returns