Leadtools.Windows.Annotations Requires Document/Medical license. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
MaintainAspectRatio Property
See Also  Example
Leadtools.Windows.Annotations Namespace > AnnEditDesigner Class : MaintainAspectRatio Property





Gets or sets a value that indicates whether to preserve the aspect ratio when moving a corner control point.This is a dependency property.

Syntax

Visual Basic (Declaration) 
Public Property MaintainAspectRatio As Boolean
Visual Basic (Usage)Copy Code
Dim instance As AnnEditDesigner
Dim value As Boolean
 
instance.MaintainAspectRatio = value
 
value = instance.MaintainAspectRatio
C# 
public bool MaintainAspectRatio {get; set;}
C++/CLI 
public:
property bool MaintainAspectRatio {
   bool get();
   void set (bool value);
}
XAML Attributes Usage 

<object MaintainAspectRatio=bool .../>

Dependencies Property Information 

Identifier field

MaintainAspectRatioProperty

Metadata properties set to true

None

XAML Attributes Usage 

<object MaintainAspectRatio=bool .../>

Dependencies Property Information 

Identifier field

MaintainAspectRatioProperty

Metadata properties set to true

None

Return Value

true to maintain the aspect ratio; otherwise, false.

Example

This example toggles the MaintainAspectRatio state of the AnnRectangleEditDesigner. To see the effect of this example, perform the following actions:

  1. Select a rectangular AnnObject
  2. Run the example
  3. Drag one of the corner control points
  4. Run the example again
  5. Drag one of the corner control points

Visual BasicCopy Code
Public Sub AnnEditDesigner_MaintainAspectRatio(ByVal editDesigner As AnnRectangleEditDesigner)
  editDesigner.MaintainAspectRatio = Not editDesigner.MaintainAspectRatio
End Sub
C#Copy Code
public void AnnEditDesigner_MaintainAspectRatio(AnnRectangleEditDesigner editDesigner) 

   editDesigner.MaintainAspectRatio = !editDesigner.MaintainAspectRatio; 
}

Remarks

When selecting an AnnRectangleObject, or any annotation object that derives from AnnRectangleObject, eight control points appear. If MaintainAspectRatio is true (default), dragging one of the four corner control points will change the size of the annotation object while maintaining its aspect ratio. If false, the aspect ratio is not preserved.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Vista, and Windows Server 2003 family

See Also

MaintainAspectRatio requires a Document/Medical product license and unlock key. For more information, refer to: Imaging Pro/Document/Medical Features and Unlocking Special LEAD Features.