DocumentInfo.fromHandle constructor

DocumentInfo.fromHandle(
  1. Pointer<id3DocumentInfo> handle
)

Creates a new instance of the DocumentInfo class.

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

Implementation

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