ImageGear .NET v25.2 - Updated
ImageGear.Art.Forms Assembly / ImageGear.ART.Forms Namespace / ImGearARTToolBar.DelegateCreateMark Delegate
Reference to ART page object.
Reference to the created mark.




In This Topic
    ImGearARTToolBar.DelegateCreateMark Delegate
    In This Topic
    A delegate for notifications when annotation mark is created.
    Syntax
    'Declaration
     
    Public Delegate Sub ImGearARTToolBar.DelegateCreateMark( _
       ByVal page As ImGearARTPage, _
       ByVal mark As ImGearARTMark _
    ) 
    'Usage
     
    Dim instance As New ImGearARTToolBar.DelegateCreateMark(AddressOf HandlerMethod)
    public delegate void ImGearARTToolBar.DelegateCreateMark( 
       ImGearARTPage page,
       ImGearARTMark mark
    )
    public: __gc __delegate void ImGearARTToolBar.DelegateCreateMark( 
       ImGearARTPage* page,
       ImGearARTMark* mark
    )
    public delegate void ImGearARTToolBar.DelegateCreateMark( 
       ImGearARTPage^ page,
       ImGearARTMark^ mark
    )

    Parameters

    page
    Reference to ART page object.
    mark
    Reference to the created mark.
    Remarks
    This delegate, if registered, is automatically called from the ART forms when the user creates a mark.
    See Also