DocumentImage.fromHandle constructor

DocumentImage.fromHandle(
  1. Pointer<id3DocumentImage> handle
)

Creates a new instance of the DocumentImage class.

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

Implementation

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