Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / FpSpread Class / MacroResolve Event


In This Topic
    MacroResolve Event
    In This Topic
    Occurs when Spread binds to a function delegate by name.
    Syntax
    'Declaration
     
    
    Public Event MacroResolve As EventHandler(Of DelegateResolveEventArgs)
    'Usage
     
    
    Dim instance As FpSpread
    Dim handler As EventHandler(Of DelegateResolveEventArgs)
     
    AddHandler instance.MacroResolve, handler
    public event EventHandler<DelegateResolveEventArgs> MacroResolve
    Event Data

    The event handler receives an argument of type DelegateResolveEventArgs containing data related to this event. The following DelegateResolveEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets or sets the macro delegate.  
    Gets the name of macro.  
    See Also