Nevron .NET Vision
Nevron.Diagram.DataImport Namespace / ShapeImportedDelegate Delegate
data source importer, from which the shape was imported
shape which was imported
record for which the shape was imported (can be null)


In This Topic
    ShapeImportedDelegate Delegate
    In This Topic
    Delegate for events, which receive infromation about shapes imported from a data record
    Syntax
    'Declaration
     
    
    Public Delegate Sub ShapeImportedDelegate( _
       ByVal dataSourceImporter As NDataSourceImporter, _
       ByVal shape As NShape, _
       ByVal record As INDataRecord _
    ) 
    'Usage
     
    
    Dim instance As New ShapeImportedDelegate(AddressOf HandlerMethod)
    public delegate void ShapeImportedDelegate( 
       NDataSourceImporter dataSourceImporter,
       NShape shape,
       INDataRecord record
    )

    Parameters

    dataSourceImporter
    data source importer, from which the shape was imported
    shape
    shape which was imported
    record
    record for which the shape was imported (can be null)
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also