Leadtools.Annotations Requires Document/Medical product license | Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.10.31
Flip Method
See Also  Example
Leadtools.Annotations Namespace > AnnAutomation Class : Flip Method




horizontal
true to flip the object horizontally (reverse); false to flip the object vertically.
Flips the objects that are currently being edited (selected) in this AnnAutomation.

Syntax

Visual Basic (Declaration) 
Public Overridable Sub Flip( _
   ByVal horizontal As Boolean _
) 
Visual Basic (Usage)Copy Code
Dim instance As AnnAutomation
Dim horizontal As Boolean
 
instance.Flip(horizontal)
C# 
public virtual void Flip( 
   bool horizontal
)
Managed Extensions for C++ 
public: virtual void Flip( 
   bool horizontal
) 
C++/CLI 
public:
virtual void Flip( 
   bool horizontal
) 

Parameters

horizontal
true to flip the object horizontally (reverse); false to flip the object vertically.

Example

Visual BasicCopy Code
Public Sub AnnAutomation_Flip(ByVal automation As AnnAutomation)
   ' make sure no objects are selected
   automation.SelectNone()
   ' see if we can flip? (should say no)
   If (Not automation.CanFlip) Then
      MessageBox.Show("Cannot flip objects because no objects are selected")
   End If

   ' add a text object and select it
   Dim text As AnnTextObject = New AnnTextObject()
   text.Font = New AnnFont("Arial", New AnnLength(20, AnnUnit.Point), FontStyle.Bold)
   text.TextColor = Color.Red
   text.Text = "Flip Me!"
   text.Bounds = New AnnRectangle(100, 100, 200, 200, AnnUnit.Pixel)
   automation.Container.Objects.Add(text)
   automation.StartEditing(text, False)

   ' flip this object vertically
   MessageBox.Show("Now we are going to flip this text vertically")
   If automation.CanFlip Then
      automation.Flip(False)
   End If

   ' flip this object horizontally (reverse)
   MessageBox.Show("Now we are going to flip this text horizontally (reverse it)")
   If automation.CanFlip Then
      automation.Flip(True)
   End If
End Sub
C#Copy Code
public void AnnAutomation_Flip(AnnAutomation automation) 

   // make sure no objects are selected 
   automation.SelectNone(); 
   // see if we can flip? (should say no) 
   if(!automation.CanFlip) 
      MessageBox.Show("Cannot flip objects because no objects are selected"); 
 
   // add a text object and select it 
   AnnTextObject text = new AnnTextObject(); 
   text.Font = new AnnFont("Arial", new AnnLength(20, AnnUnit.Point), FontStyle.Bold); 
   text.TextColor = Color.Red; 
   text.Text = "Flip Me!"; 
   text.Bounds = new AnnRectangle(100, 100, 200, 200, AnnUnit.Pixel); 
   automation.Container.Objects.Add(text); 
   automation.StartEditing(text, false); 
 
   // flip this object vertically 
   MessageBox.Show("Now we are going to flip this text vertically"); 
   if(automation.CanFlip) 
      automation.Flip(false); 
 
   // flip this object horizontally (reverse) 
   MessageBox.Show("Now we are going to flip this text horizontally (reverse it)"); 
   if(automation.CanFlip) 
      automation.Flip(true); 
}

Remarks

AnnAutomation can flip one or more AnnObject if they are currently in edit mode (selected) and these objects are not locked.

If objects are grouped togeter, the group is flipped as a unit.

Call the CanFlip property to determine whether you can call this method.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also

Leadtools.Annotations requires a Document or Medical toolkit license and unlock key. For more information, refer to: Raster Pro/Document/Medical Features