Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.5.10
|
Leadtools.Windows.Annotations Namespace > AnnEditDesigner Class : UseRotateControlPoints Property |
public bool UseRotateControlPoints {get; set;}
'Declaration Public Property UseRotateControlPoints As Boolean
'Usage Dim instance As AnnEditDesigner Dim value As Boolean instance.UseRotateControlPoints = value value = instance.UseRotateControlPoints
This example toggles the use of the rotate control points.
Imports Leadtools.Windows.Controls Imports Leadtools.Windows.Annotations 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
using Leadtools.Windows.Controls; using Leadtools.Windows.Annotations; using Leadtools.Demos; using Leadtools.Help; public void AnnEditDesigner_UseRotateControlPoints(AnnEditDesigner editDesigner) { editDesigner.UseRotateControlPoints = !editDesigner.UseRotateControlPoints; string s = String.Format("UseRotateControlPoints changed to {0}", editDesigner.UseRotateControlPoints); MessageBox.Show(s); }
using Leadtools.Windows.Controls; using Leadtools.Windows.Annotations; using Leadtools.Examples; public void AnnEditDesigner_UseRotateControlPoints(AnnEditDesigner editDesigner) { editDesigner.UseRotateControlPoints = !editDesigner.UseRotateControlPoints; string s = String.Format("UseRotateControlPoints changed to {0}", editDesigner.UseRotateControlPoints); MessageBox.Show(s); }
Imports Leadtools.Windows.Controls Imports Leadtools.Windows.Annotations 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