TextFieldList Class¶
Namespace: id3.Document
Definition¶
Represents a list of text fields extracted from a document.
class TextFieldList
class TextFieldList implements Finalizable
public partial class TextFieldList
public class TextFieldList implements AutoCloseable, Serializable
public class TextFieldList
typedef struct id3DocumentTextFieldList *ID3_DOCUMENT_TEXT_FIELD_LIST;
Usage¶
textFieldListInstance = id3document.TextFieldList()
Explicit destruction
# ...
del textFieldListInstance
final textFieldListInstance = sdk.TextFieldList();
// ...
Explicit destruction
// ...
textFieldListInstance.dispose()
using (var textFieldListInstance = new TextFieldList())
{
// ...
}
Explicit destruction
var textFieldListInstance = new TextFieldList()
// ...
textFieldListInstance.Dispose()
try (TextFieldList textFieldListInstance = new TextFieldList()) {
// ...
}
Explicit destruction
TextFieldList textFieldListInstance = new TextFieldList();
// ...
textFieldListInstance.close();
private var textFieldListInstance: TextFieldList? = nil
textFieldListInstance = try TextFieldList()
ID3_DOCUMENT_TEXT_FIELD_LIST hTextFieldList{};
int err = id3DocumentTextFieldList_Initialize(&hTextFieldList);
if (err == ID3_SUCCESS) {
// ...
id3DocumentTextFieldList_Dispose(&hTextFieldList);
}
Properties¶
Iteration¶
This class supports iteration in Dart, C#, Java and Python.
Methods¶
Name |
Description |
---|---|
Adds an item to the TextFieldList object. |
|
Clears the TextFieldList object. |
|
Clones the TextFieldList object. |
|
Gets an item of the TextFieldList object. |
|
Gets the number of elements in the TextFieldList object. |
|
Removes an element of the TextFieldList object. |
|
TextFieldList object. |
|
Sets an item of the TextFieldList object. |