Article | 60000581 |
Type | Wish |
Product | Engine |
Version | 6013 |
Date Added | 7/22/2008 12:00:00 AM |
Fixed | (9/10/2008 12:00:00 AM) |
Submitted by | Yannis makarounis |
Summary
Support of Magnifier Glass with BaseActions in cursor position.
Solution
In version 6014 a new BaseAction object was added:
VectorDraw.Professional.ActionUtility.ActionMagnifier
This object contains a static method getUserMagnifierPoint which can be called to begin a magnifier glass action.
For vdraw.ocx Wrapper component you can start Magnifier as follow:
In VB6 :
Dim doc As VectorDraw_Professional.vdDocument Set doc = VDraw1.ActiveDocument.WrapperObject doc.ActionUtility.StartUserMagnifier doc, 3, 210, 16
In Delphi :
Var Doc : VectorDraw_Professional_TLB.IvdDocument; .... .... Doc := VDraw1.ActiveDocument.WrapperObject as VectorDraw_Professional_TLB.IvdDocument; Doc.ActionUtility.StartUserMagnifier(Doc, 3, 210, 16); ....