Leadtools.Annotations Namespace > AnnDrawDesigner Class : UseNewMultilineBehavior Property |
public virtual bool UseNewMultilineBehavior {get; set;}
'Declaration Public Overridable Property UseNewMultilineBehavior As Boolean
'Usage Dim instance As AnnDrawDesigner Dim value As Boolean instance.UseNewMultilineBehavior = value value = instance.UseNewMultilineBehavior
This property is used when drawing any annotation object that derives from AnnPolylineObject such as AnnPolygonObject, AnnCurveObject and AnnPolyRulerObject. When drawing a multi-line object, the user moves the mouse cursor to the desired position of the first point and clicks the left button. The user then moves to the location of the second point and releases the cursor to draw the second point. If the position of the two points is equal (in other words, the user clicks and releases the cursor over the same position) then the two points will have the same value and might not be the desired behavior.
When the value of UseNewMultilineBehavior is true (the default value), then when the user clicks and releases the mouse cursor when drawing the first point of the polyline object, the drawing object will be canceled.
When the value of UseNewMultilineBehavior is false, then when the user clicks and releases the mouse cursor when drawing the first point of the polyline object, a new polyline object with identical two points in the same position will be added.
The AnnAutomationManager.UseNewMultilineBehavior property can be used to automatically set the value of AnnDrawDesigner.UseNewMultilineBehavior when using the automation mode.