Re: wrapping text in an NSTextView
Re: wrapping text in an NSTextView
- Subject: Re: wrapping text in an NSTextView
- From: Christopher Lloyd <email@hidden>
- Date: Wed, 16 May 2001 12:37:46 -0400
Check out NSParagraphStyle, this can be an attribute in an
NSAttributedString. So in this case you'd create a default paragraph style,
make a mutableCopy, set the lineBreakMode to NSLineBreakByClipping (maybe
NSLineBreakByTruncatingTail), then set it as an attribute on the NSRange of
characters your interested in on the NSTextView's NSTextStorage.
Hope this helps,
Chris
At 12:20 PM 5/16/2001 -0400, Max wrote:
I have an NSTextView which I need to display text like a browser would
handle a <pre> </pre> tag. Namely, I dont want it to wrap the text. I
can't find anything in the api's to set this.
Anyone have any idea how to do this?
-Max