Gets or sets a value that indicates whether to preserve the aspect ratio when moving a corner control point for all
AnnEditDesigner derived classes.
Syntax
Visual Basic (Declaration) | |
---|
Public Property MaintainAspectRatio As Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As AnnAutomationManager
Dim value As Boolean
instance.MaintainAspectRatio = value
value = instance.MaintainAspectRatio
|
C# | |
---|
public bool MaintainAspectRatio {get; set;} |
Managed Extensions for C++ | |
---|
public: __property bool get_MaintainAspectRatio();
public: __property void set_MaintainAspectRatio(
bool value
); |
C++/CLI | |
---|
public:
property bool MaintainAspectRatio {
bool get();
void set (bool value);
} |
Return Value
true to maintain the aspect ratio; otherwise, false.
Example
This example makes it so that when moving the corner control points
of a rectangular annotation object, the aspect ratio is not preserved.
Visual Basic | Copy Code |
---|
Public Sub AnnAutomationManager_MaintainAspectRatio(ByVal manager As AnnAutomationManager)
manager.MaintainAspectRatio = False
End Sub |
C# | Copy Code |
---|
public void AnnAutomationManager_MaintainAspectRatio(AnnAutomationManager manager) { manager.MaintainAspectRatio = false; } |
Remarks
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