ThumbnailEx.ItemMovedEventHandler Delegate
In This Topic
Occurs when the user moved an item in the control.
Syntax
'Declaration
<GuidAttribute("087288FE-F973-330B-8E85-3FA29675FA2B")>
Public Delegate Sub ThumbnailEx.ItemMovedEventHandler( _
ByVal As Integer, _
ByVal As Integer _
)
[Guid("087288FE-F973-330B-8E85-3FA29675FA2B")]
public delegate void ThumbnailEx.ItemMovedEventHandler(
int ,
int
)
public delegate ThumbnailEx.ItemMovedEventHandler(
: Integer;
: Integer
);
GuidAttribute("087288FE-F973-330B-8E85-3FA29675FA2B")
public delegate ThumbnailEx.ItemMovedEventHandler(
: int,
: int
)
[Guid("087288FE-F973-330B-8E85-3FA29675FA2B")]
public: __gc __delegate void ThumbnailEx.ItemMovedEventHandler(
int ,
int
)
[Guid("087288FE-F973-330B-8E85-3FA29675FA2B")]
public delegate void ThumbnailEx.ItemMovedEventHandler(
int ,
int
)
Parameters
- srcIdx
- The moved item index. Between 0 and ItemCount - 1.
- dstIdx
- The index of the item destination. Between 0 and ItemCount - 1.
See Also