ImageEn for Delphi and C++ Builder ImageEn for Delphi and C++ Builder

 

ImageEn Forum
Profile    Join    Active Topics    Forum FAQ    Search this forumSearch
 All Forums
 ImageEn Library for Delphi, C++ and .Net
 ImageEn and IEvolution Support Forum
 complex shape - highlight

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

View 
UserName:
Password:
Format  Bold Italicized Underline  Align Left Centered Align Right  Horizontal Rule  Insert Hyperlink   Browse for an image to attach to your post Browse for a zip to attach to your post Insert Code  Insert Quote Insert List
   
Message 

 

Emoji
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Black Eye [B)]
Frown [:(] Shocked [:0] Angry [:(!] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
graphman Posted - Nov 25 2014 : 03:49:49
Hi, I'm trying to create highlighted shapes over a street map. The Highlight tool does this for me but its a square/rectangle shape only. The polyline is perfect for creating the exact shapes I need (to follow boundaries etc.) but I can't fill these shapes. Is there a way to create a complex shape with the properties of highlight shape?


This what I'm hoping to do!



6   L A T E S T    R E P L I E S    (Newest First)
xequte Posted - Dec 28 2014 : 03:06:28
Hi Bruce

This seems to be the same as:


http://www.imageen.com/ieforum/topic.asp?TOPIC_ID=1917

Nigel
Xequte Software
www.xequte.com
nigel@xequte.com
bruce Posted - Dec 26 2014 : 20:14:21
hello friend


You could draw a polygon on a map from position (latitude longitude) ??
graphman Posted - Dec 02 2014 : 03:57:03
Thanks
xequte Posted - Dec 01 2014 : 21:06:24
Also, use ObjTransparency if the shape should be transparent:

http://www.imageen.com/help/TImageEnVect.ObjTransparency.html

Nigel
Xequte Software
www.xequte.com
nigel@xequte.com
graphman Posted - Nov 27 2014 : 03:20:24
Thank you.
xequte Posted - Nov 26 2014 : 22:22:27
Hi

How about something like:

procedure Tfmain.btnInsertComplexShapeClick(Sender: TObject);
begin
  ImageEnVect1.MouseInteractVt := [miPutPolyLine];
  ImageEnVect1.PolylineClosingMode := iecmAlways;
  ImageEnVect1.PolylineEndingMode  := ieemMouseUp;
  ImageEnVect1.ObjBrushColor[-1] := clYellow;
  ImageEnVect1.ObjBrushStyle[-1] := bsSolid;
end;


Nigel
Xequte Software
www.xequte.com
nigel@xequte.com