The Edit Event is available in LEADTOOLS Document and Medical Imaging toolkits.
Occurs when this AnnEditDesigner is editing an AnnObject.| Visual Basic (Declaration) | |
|---|---|
Public Event Edit As EventHandler(Of AnnEditDesignerEventArgs) | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As AnnEditDesigner Dim handler As EventHandler(Of AnnEditDesignerEventArgs) AddHandler instance.Edit, handler | |
| C# | |
|---|---|
public event EventHandler<AnnEditDesignerEventArgs> Edit | |
| C++/CLI | |
|---|---|
public: event EventHandler<AnnEditDesignerEventArgs^>^ Edit | |
The event handler receives an argument of type AnnEditDesignerEventArgs containing data related to this event. The following AnnEditDesignerEventArgs properties provide information specific to this event.
| Property | Description |
|---|---|
| Cancel | Gets or sets a value indicating whether the editing operation should be canceled. |
| HitTestObject | Gets the current hit test object. |
| MoveControlPointIndex | Gets the index of the AnnControlPoint currently being edited. |
| Object | Gets the AnnObject object currently being edited. |
| Operation | Gets the current edit operation |
| OperationStatus | Gets the current edit operation status. |
For an example, refer to AnnDesigner.
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
Copy Code