&nbsp;Hi all,<br><br>working with MapServer Export PlugIn, I discovered that the STYLE of mapfile has always OUTLINECOLOR&nbsp; even if the outlinestyle is "Nothing".<br>I resolved with a control in ms_export.py file.<br>In writeClassStyleContent, i calculate <br><br>outlinestyle = self.getSymbolProperty(symbolNode, 'outlinestyle')<br>-<br>-<br>-<br><br>and before writing OUTLINECOLOR, I insert <br><br>if 'NoPen' != outlinestyle:<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; class_def += "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; OUTLINECOLOR " + outlinecolor + "\n"<br><br><br><br>I don't know, if it's helpful.<br><br>Hi<br>