'Declaration
Public Event BeforePageReorder As EventHandler(Of BeforePageReorderEventArgs)
'Usage
Dim instance As PDFPageThumbnailView Dim handler As EventHandler(Of BeforePageReorderEventArgs) AddHandler instance.BeforePageReorder, handler
public event EventHandler<BeforePageReorderEventArgs> BeforePageReorder
public: __event EventHandler<BeforePageReorderEventArgs*>* BeforePageReorder
public: event EventHandler<BeforePageReorderEventArgs^>^ BeforePageReorder
Event Data
The event handler receives an argument of type BeforePageReorderEventArgs containing data related to this event. The following BeforePageReorderEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Cancel | Gets or sets a value indicating whether the reorder operation should be canceled or not. |
InsertPosition | Gets the position in the document where the pages are inserted. |
Pages | Gets the list of pages being reordered. |
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