Leadtools.Annotations Namespace > AnnEditDesigner Class : UseRotateControlPoints Property |
public virtual bool UseRotateControlPoints {get; set;}
'Declaration Public Overridable Property UseRotateControlPoints As Boolean
'Usage Dim instance As AnnEditDesigner Dim value As Boolean instance.UseRotateControlPoints = value value = instance.UseRotateControlPoints
Imports Leadtools Imports Leadtools.Annotations Imports Leadtools.Codecs Imports Leadtools.WinForms 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; using Leadtools.Annotations; using Leadtools.Codecs; using Leadtools.WinForms; public void AnnEditDesigner_UseRotateControlPoints(AnnEditDesigner editDesigner) { editDesigner.UseRotateControlPoints = !editDesigner.UseRotateControlPoints; string s = String.Format("UseRotateControlPoints changed to {0}", editDesigner.UseRotateControlPoints); MessageBox.Show(s); }