Description:
Evoked just after the mark has been created, and before it is displayed. This event gives you the opportunity to change any of the mark's attributes.
|
This event occurs at the very end of the actual creation of the mark. For example, if the user is creating a Typed Text mark, PreCreateNotify Event is raised when the mouse is first pressed. The location where the mouse was pressed becomes the upper-left corner of the mark. The point where the user releases the mouse button becomes the lower-right corner. At that time CreateNotify Event is raised. The user then types the text into the mark, and then clicks the mouse- button again. At that time PostCreateNotify Event is raised. |
Syntax:
Sub PostCreateNotify(pPage As IGArtPage, MarkIndex As Long,
MarkType As Long)
Parameters:
Name |
Description |
pPage |
The IGArtPage Object in which the mark has been modified. |
MarkIndex |
The index of the mark that has been created. |
MarkType |
The type of the mark - an enumIGArtMarkType Enumeration value. Note that there is no markSelect type mark - that value is used to identify the Select button on the ToolBar. |
Sample:
None