←Select platform

Move Method

Summary

Moves the object.

Syntax

C#
VB
Java
Objective-C
WinRT C#
C++
protected virtual void Move( 
   double offsetX, 
   double offsetY 
) 
Protected Overridable Sub Move( _ 
   ByVal offsetX As Double, _ 
   ByVal offsetY As Double _ 
)  
protected virtual void Move(  
   double offsetX, 
   double offsetY 
) 
- (void)moveOffsetX:(double)offsetX offsetY:(double)offsetY 
protected void move( 
  double offsetX,  
  double offsetY 
) 
             
 function Leadtools.Annotations.Designers.AnnEditDesigner.Move(  
   offsetX , 
   offsetY  
) 
protected:  
   virtual void Move( 
      double offsetX, 
      double offsetY 
   ) 

Parameters

offsetX
The horizontal offset to be used when moving the object.

offsetY
The vertical offset to be used when moving the object.

Remarks

This method is called when the user clicks and drags the AnnEditDesigner object itself. Derived classes may override this method and provide the necessary functionality to update the coordinates of the object being edited. The default implementation is as follows:

C# Snippet
// Translate the target object 
this.TargetObject.Translate(offsetX, offsetY); 
             

Example

For more information and an example, refer to Implement User Defined Objects with LEADTOOLS Annotations

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Annotations.Designers Assembly