DocumentDetector.fromHandle constructor

DocumentDetector.fromHandle(
  1. Pointer<id3DocumentDetector> handle
)

Creates a new instance of the DocumentDetector class.

param handle Handle to the DocumentDetector. throws DocumentException An error has occurred during Document Library execution.

Implementation

DocumentDetector.fromHandle(Pointer<id3DocumentDetector> handle) {
  _pHandle = calloc();
  _pHandle.value = handle;
  _disposable = false;
}