| Article | 60001736 |
| Type | Wish |
| Product | Engine |
| Date Added | 6/19/2012 12:00:00 AM |
| Fixed | (6/11/2013 12:00:00 AM) |
| Submitted by | Luca Mancusi |
Summary
Is it possible to have mid-grip point for vdLine objects ?
Solution
This is added in 6026 version and above.
A static property has been added to the Document that controls the visibility of grips to the middle points of Lines.
Get/Set a static boolean value that represents if grips will be shown in the middle of a vdLine.
Default value false (The middle grips do not show in lines).
Note that this static value should be set in the initialization of the application , and in order to see the changes (if is set after opening a file or selecting a vdLine) a RegenAll to the Document is required.
public bool EnableMiddleGripForLines
This grip if visible and clicked will move the vdLine. You can use it like :
mDoc.GlobalRenderProperties.EnableMiddleGripForLines = true;
This is also availble in the VDF Wrapper. You can use it in VB6.0 like :
Dim Doc as VectorDraw_Professional.vdDocument 'needs VectorDraw.Professional.TLB
.....
Doc.GlobalRenderProperties.EnableMiddleGripForLines = True
