ImageGear Professional v18.2 > API Reference Guide > ART Component API Reference > ART Component Objects > IGArtCtl Control > IGArtCtl Events > DeleteNotify Event |
Raised whenever a mark is deleted.
Your event handler determines whether the mark is created or not. If DeleteFlag is set to True, the mark is deleted; if DeleteFlag is set to False, the mark is not deleted.
Sub DeleteNotify(pPage As IGArtPage, MarkIndex As Long,
DeleteFlag As IGArtEventParams)
Name | Description |
---|---|
pPage | The IGArtPage Object in which the mark will be created. |
MarkIndex | The index of the mark that is to be deleted. |
DeleteFlag | Your event handler should set longParam member of IGArtEventParams Class to 1 to tell ImageGear to continue the process of the mark deletion, or set it to 0 to tell ImageGear to stop the mark deletion. |
None