removeAt method

void removeAt(
  1. int index
)

Removes an element of the PointList object.

param index Index of the Point item to remove. throws DocumentException An error has occurred during Document Library execution.

Implementation

void removeAt(int index) {
  var err = documentSDK.id3DocumentPointList_RemoveAt(_pHandle.value, index);
  if (err != DocumentError.success.value) {
    throw DocumentException(err);
  }
}