Dim s As Shape
Set s = ActiveSelection.Shapes(1)
MsgBox "线段长度为: " & (s.Curve.Length * 25.4)
...全文
5666打赏收藏
CorelDraw VBA 线条上的位置坐标求助【续】
请问一下!已经线段长度,如果要求线上的点(非节点,而是线段长度的10%位置)的坐标,请问有可能吗!如果可以的话应该如何写,谢谢 假设这个点是线段长度的10%的位置 Dim s As Shape Set s = ActiveSelection.Shapes(1) MsgBox "线段长度为: " & (s.Curve.Length * 25.4)
借助API LineDDA ?
LineDDA
The LineDDA function determines which pixels should be highlighted for a line defined by the specified starting and ending points.
BOOL LineDDA(
int nXStart, // x-coordinate of line's starting point
int nYStart, // y-coordinate of line's starting point
int nXEnd, // x-coordinate of line's ending point
int nYEnd, // y-coordinate of line's ending point
LINEDDAPROC lpLineFunc, // pointer to callback function
LPARAM lpData // pointer to application-defined data
);
Parameters
nXStart
Specifies the x-coordinate of the line's starting point.
nYStart
Specifies the y-coordinate of the line's starting point.
nXEnd
Specifies the x-coordinate of the line's ending point.
nYEnd
Specifies the y-coordinate of the line's ending point.
lpLineFunc
Pointer to an application-defined callback function. For more information, see the LineDDAProc callback function.
lpData
Pointer to the application-defined data.
Return Values
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero.
Windows NT: To get extended error information, callGetLastError.
Remarks
The LineDDA function passes the coordinates for each point along the line, except for the line's ending point, to the application-defined callback function. In addition to passing the coordinates of a point, this function passes any existing application-defined data.
The coordinates passed to the callback function match pixels on a video display only if the default transformations and mapping modes are used.
QuickInfo
Windows NT: Requires version 3.1 or later.
Windows: Requires Windows 95 or later.
Windows CE: Unsupported.
Header: Declared in wingdi.h.
Import Library: Use gdi32.lib.
See Also
Lines and Curves Overview, Line and Curve Functions, LineDDAProc