PositionChangedHandler Delegate
In This Topic
Syntax
'Declaration
Public Delegate Sub PositionChangedHandler( _
ByVal As System.Object, _
ByVal As DicomImage _
)
'Usage
Dim instance As New PositionChangedHandler(AddressOf HandlerMethod)
public delegate void PositionChangedHandler(
System.object ,
DicomImage
)
public delegate PositionChangedHandler(
: System.TObject;
: DicomImage
);
public delegate PositionChangedHandler(
: System.Object,
: DicomImage
)
public: __gc __delegate void PositionChangedHandler(
System.Object* ,
DicomImage*
)
public delegate void PositionChangedHandler(
System.Object^ ,
DicomImage^
)
Parameters
- Sender
- The object causing the change to happen
- Image
- The Image which has changed
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also