T O P I C R E V I E W |
save0804 |
Posted - Jun 08 2017 : 00:02:56 When creating objects of lines, I would like to change the usual black line during drawing. What should I do? |
7 L A T E S T R E P L I E S (Newest First) |
xequte |
Posted - Jun 12 2017 : 19:52:27 Hmmm, we'll need to investigate that for the next update.
Nigel Xequte Software www.xequte.com nigel@xequte.com
|
save0804 |
Posted - Jun 12 2017 : 19:38:17 Thank you. I've already done it, but I have afterimages. Can you draw without any afterimages?
|
xequte |
Posted - Jun 12 2017 : 17:55:36 Hi
Please use:
ImageEnVect1.InsertingPen.Color := clRed; ImageEnVect1.InsertingPen.Mode := pmCopy;
Transparency of the line cannot be set while drawing.
Nigel Xequte Software www.xequte.com nigel@xequte.com
|
save0804 |
Posted - Jun 11 2017 : 23:15:53 Really thankful. I want to change Transparency, width and color in InsertingPen property. InsertingPen.Color: = clred But it comes out in black. Is it not possible to change the transparency? |
xequte |
Posted - Jun 11 2017 : 21:27:07 Hi
OK, please set the inserting pen via:
https://www.imageen.com/help/TImageEnVect.InsertingPen.html
Nigel Xequte Software www.xequte.com nigel@xequte.com |
save0804 |
Posted - Jun 09 2017 : 01:22:02 Once the line is drawn, it picks up the color of the ObjPenStyle and ObjPenColor which is fine. It is applied when mouse up. I want it to be applied immediately when moving the mouse. Is this possible? |
xequte |
Posted - Jun 08 2017 : 17:11:18 Hi
Please set ObjPenColor:
https://www.imageen.com/help/TImageEnVect.ObjPenColor.html
e.g. to make newly added lines red:
ImageEnVect1.ObjPenColor[ IEV_NEXT_INSERTED_OBJECT ] := clRed;
Nigel Xequte Software www.xequte.com nigel@xequte.com |