AutoCAD Map 3D
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Line break in text label doesn't center 2nd line like it does first
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hello,
I have an FDO layer which I am styling like so:
Concat ( FDO_LAYER1, Concat ( '\n', FDO_LAYER2 ) )
This layer is styled so that all text is centered. In this case, FDO_LAYER2 is having it's text left aligned. I'm pretty sure this is due to the '\n' method I am using for a new line. Is there something else I can use to break the line and maintain the center styling?
Using a second point for FDO_LAYER2 is not an option. Thanks.
Re: Line break in text label doesn't center 2nd line like it does first
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
will this work ? select plain test, text centering, and fixed location for the style
Concat ( FDO_LAYER1, '\n', FDO_LAYER2 )
Re: Line break in text label doesn't center 2nd line like it does first
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Map 2010 won't let me enter more than 2 parameters into a concat so I had to use the concat inside another one.
Re: Line break in text label doesn't center 2nd line like it does first
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
( ) aroundFDO_LAYER2
Concat ( FDO_LAYER1, Concat ( '\n', ( FDO_LAYER2) ) )
Re: Line break in text label doesn't center 2nd line like it does first
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Not working either. Second line is still left-aligned instead of center-align styled I have set.
i know this works properly in Map 2012 but we can't upgrade yet!

