Hey Paula
I second James's approach.
Don't look for a line style but create a region that lies within your polygons and style this region using the region styles instead.
Now, the cool thing is that since MapInfo Pro v2019, you have been ale to create derived spatial objects in queries and use these objects instead of the original objects.
SQL to the rescue, so to speak.
To create your border area, you need ot create a negative buffer on your polygons. That will return a polygon smaller than the original. You use this negative buffer as a cutter object using the Erase() function to cut out a hole in the original polygon so that you end up with a border polygon.
And, the good thing is that you go do this with a Select statement:
Select t.*, Erase(t.Obj, Buffer(t.obj, 72, -500, "m")) Object
From Postal_Sectors As "t"
Into qBorder NoSelect
To use this on your data, I would sugget opening the SQL window and pasting the query from above. Now change the name of the table. Ad change the query to be added to your map and not shown in a browser. That's it.
Push the Run button to execute the query.
------------------------------
Peter Horsbøll Møller
Principal Presales Consultant | Distinguished Engineer
Precisely | Trust in Data
------------------------------
Original Message:
Sent: 03-03-2026 23:47
From: Paula Morrissey New
Subject: Line inside style
Hello community,
I want to be able to highlight certain areas from the rest, preferably with another thicker and transparent line but it must be inside that area's line.
The best I can do is with one of the line styles which includes marks inside the outline. But this is a nicer look.
Thanks for any help I can get.
------------------------------
Paula M
------------------------------