Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread.Model Namespace / SheetDataModelEventHandler Delegate


In This Topic
    SheetDataModelEventHandler Delegate
    In This Topic
    Represents a defined method that handles the ISheetDataModel Changed event.
    Syntax
    'Declaration
     
    
    Public Delegate Sub SheetDataModelEventHandler( _
       ByVal sender As Object, _
       ByVal e As SheetDataModelEventArgs _
    ) 
    'Usage
     
    
    Dim instance As New SheetDataModelEventHandler(AddressOf HandlerMethod)
    public delegate void SheetDataModelEventHandler( 
       object sender,
       SheetDataModelEventArgs e
    )

    Parameters

    sender
    e
    Remarks
    For an introduction to delegates, refer to Delegates Tutorial in the Microsoft C# Programmers Reference.
    See Also