T O P I C R E V I E W |
Eric |
Posted - Oct 27 2013 : 22:33:48 Hi, How could I automatic create a fixed angle object with "miPutAngle". Thanks |
1 L A T E S T R E P L I E S (Newest First) |
John |
Posted - Oct 28 2013 : 19:56:11 If you are asking how to place an angle on a canvas in code look at the following excerpt from the help file.
procedure SetObjAnglePoints(hobj: integer; Points: array of TPoint);
Description
Sets the three points used to define an angle objects (iekAngle).
Parameter Description hobj Object handle. Points Array of three points used to define the angle.
Example
ImageEnVect1.ObjKind[IEV_NEXT_INSERTED_OBJECT] := iekAngle; ImageEnVect1.SetObjAnglePoints(IEV_NEXT_INSERTED_OBJECT, [Point(10, 10), Point(50, 50), Point(10, 100)]); ImageEnVect1.AddNewObject();
TIA
John |
|
|