Gets or sets the use of rotate control points of this
AnnEditDesigner.
Syntax
Visual Basic (Declaration) | |
---|
Public Overridable Property UseRotateControlPoints As Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As AnnEditDesigner
Dim value As Boolean
instance.UseRotateControlPoints = value
value = instance.UseRotateControlPoints
|
C# | |
---|
public virtual bool UseRotateControlPoints {get; set;} |
Managed Extensions for C++ | |
---|
public: __property virtual bool get_UseRotateControlPoints();
public: __property virtual void set_UseRotateControlPoints(
bool value
); |
C++/CLI | |
---|
public:
virtual property bool UseRotateControlPoints {
bool get();
void set (bool value);
} |
Return Value
true if using rotate control points for
AnnObject rotation; false otherwise.
Example
This example toggles the use of the rotate control points.
Visual Basic | Copy Code |
---|
Public Sub AnnEditDesigner_UseRotateControlPoints(ByVal editDesigner As AnnEditDesigner)
editDesigner.UseRotateControlPoints = Not editDesigner.UseRotateControlPoints
Dim s As String = String.Format("UseRotateControlPoints changed to {0}", editDesigner.UseRotateControlPoints)
MessageBox.Show(s)
End Sub |
C# | Copy Code |
---|
public void AnnEditDesigner_UseRotateControlPoints(AnnEditDesigner editDesigner) { editDesigner.UseRotateControlPoints = !editDesigner.UseRotateControlPoints; string s = String.Format("UseRotateControlPoints changed to {0}", editDesigner.UseRotateControlPoints); MessageBox.Show(s); } |
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