Tell me more ×
Geographic Information Systems Stack Exchange is a question and answer site for cartographers, geographers and GIS professionals. It's 100% free, no registration required.

Is there a way to format the Name element generated as dynamic text from Data Driven Pages. This element serves as my title and it is too long and needs to be wrapped onto another line.

share|improve this question
1  
I was wondering if you can add a bit more detail to what you're trying to do – dassouki Jan 25 '11 at 20:52

3 Answers

11.Type the following for the text: Coordinate System:

dyn type="dataFrame" name="Detail Map" property="sr" srProperty="name"/ dyn   
type="dataFrame" name="Detail Map" property="sr" srProperty="projection"  
preStr="Projection: " newLine="true" emptyStr=""/ dyn type="dataFrame"   
name="Detail Map" property="sr" srProperty="datum" preStr="Datum: "     
newLine="true" emptyStr=""/ dyn type="dataFrame" name="Detail Map"   
property="sr" srProperty="units" preStr="Units: " newLine="true" emptyStr=""/.

I think this is an example of using a newline=true in the middle of a dynamic text string.
Note: I had to edit out the brackets to show here

share|improve this answer

If your title is not already a ParagraphTextElement, you might try converting it into one. Seems like there should be a way to do this interactively in arcmap, but I don't see one.

share|improve this answer
I broke the "too-long" title down into several new columns. Then I made multiple dynamic text references to several of the column names in my DDP table. Then I combined static and dynamic text together. Otherwise, you're left with basic tag formating of the text. – user1771 Jan 25 '11 at 21:48
@Taj - Go ahead and post this as an answer to your own question. The community can vote for which approach is the best. – Kirk Kuykendall Jan 25 '11 at 21:51

What is not well documented is the fact that Dynamic Text in data driven pages can pull any of the information from the table you are running the data driven pages off by simply by where SHAPE_Area can be replaced by any column in the table

share|improve this answer
Welcome to the GIS SE! Would it be possible to post a reference supporting your answer? – R.K. Nov 24 '12 at 15:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.