Message 1 of 1
Flat Pattern to DXF differant color in one Layer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
I export the flat pattern to a dxf with the use of iLogic.
I'm able to place text in a different layer with a specific color.
But i like to place all the entities in one layer but with different color's.
SyntaxEditor Code Snippet
sOut = "FLAT PATTERN DXF?AcadVersion=2007" _ + "&OuterProfileLayer =0 & OuterProfilesColor =255;255;255" _ + "&FeatureProfilesLayer =FeatureProfilesLayer & FeatureProfilesLayerColor =255;255;255" _ + "&FeatureProfilesUpLayer =Engraving & FeatureProfilesUpLayerColor =255;255;0"
This one puts my engraving in layer Engraving and will be yellow.
Bellow it will put is all in Layer 0 but also will make it all the same color.
SyntaxEditor Code Snippet
sOut = "FLAT PATTERN DXF?AcadVersion=2007" _ + "&OuterProfileLayer =0 & OuterProfilesColor =255;255;255" _ + "&FeatureProfilesLayer =0 & FeatureProfilesLayerColor =255;255;255" _ + "&FeatureProfilesUpLayer =0 & FeatureProfilesUpLayerColor =255;255;0"
Is there a way to fix this?