The MaintainAspectRatio Property is available in LEADTOOLS Document and Medical Imaging toolkits.
Gets or sets a value that indicates whether to preserve the aspect ratio when moving a corner control point.Visual Basic (Declaration) | |
---|---|
Public Overridable 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 virtual bool MaintainAspectRatio {get; set;} |
Property Value
true to maintain the aspect ratio; otherwise, false.This example toggles the MaintainAspectRatio state of the AnnRectangleEditDesigner. To see the effect of this example, perform the following actions:
- Select a rectangular AnnObject
- Run the example
- Drag one of the corner control points
- Run the example again
- Drag one of the corner control points
Visual Basic | Copy 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; } |
When selecting an AnnRectangleObject, or any annotation object that derives from AnnRectangleObject, or an AnnGroupObject, 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. For more information, refer to New Annotation Features of Version 14.5.
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7