The UseRotateControlPoints Property is available in LEADTOOLS Document and Medical Imaging toolkits.
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;} |
C++/CLI | |
---|
public:
virtual property bool UseRotateControlPoints {
bool get();
void set ( bool value);
} |
Property 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 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
See Also