Annotator.Remove

Remove(int)

Removes annotation from annotations list by Id.

public void Remove(int annotationId)
Parameter Type Description
annotationId Int32 The annotation’s id that must be removed.

Remarks

Learn more

See Also


Remove(AnnotationBase)

Removes annotation from the document.

public void Remove(AnnotationBase annotation)
Parameter Type Description
annotation AnnotationBase Annotation that must be removed.

Remarks

Learn more

See Also


Remove(List<int>)

Removes collection of annotations from document by provided annotation ids.

public void Remove(List<int> annotationIds)
Parameter Type Description
annotationIds List`1 The annotation’s id that must be removed.

Remarks

Learn more

See Also


Remove(List<AnnotationBase>)

Removes collection of annotations from document.

public void Remove(List<AnnotationBase> annotationsToDelete)
Parameter Type Description
annotationsToDelete List`1 The annotations that must be removed.

Remarks

Learn more

See Also