• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: wrapping text in an NSTextView
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: wrapping text in an NSTextView


  • Subject: Re: wrapping text in an NSTextView
  • From: Christopher Lloyd <email@hidden>
  • Date: Wed, 16 May 2001 15:52:29 -0400

NSTextView actually represents a group of objects, NSTextView, NSTextContainer, NSLayoutManager, NSTextStorage and others. The text and attributes (fonts, colors, paragraph style) are stored in an NSAttributedString/NSMutableAttributedString, in this case, a subclass named NSTextStorage which is specific to the NSTextView system.

So, something like...

NSRange range=NSMakeRange(myStartLocation,theLength);
NSTextStorage *textStorage=[myTextView textStorage];
NSMutableParagraphStyle *paragraphStyle=[[NSParagraphStyle defaultParagraphStyle] mutableCopy];

[paragraphStyle setLineBreakMode:NSLineBreakByClipping];
[textStorage addAttribute:NSParagraphStyleAttributeName value:paragraphStyle range:range];

Will do about what you want. You might actually want to see if there is an existing paragraph style in that range and modify it. If you are doing a lot of changes you probably want to use the beginEditing/endEditing methods of NSMutableAttributedString to speed things up.

Hope this helps,
Chris

At 01:24 PM 5/16/2001 -0400, Max wrote:
Could you be more specific, I couldn't discern exactly what you mean. Should I just make an attributed string with the attribute being the paragraph style? And then set that attributed string to the NSTextView with setStringValue?

On Wednesday, May 16, 2001, at 12:37 PM, Christopher Lloyd wrote:

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.

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?


References: 
 >Re: wrapping text in an NSTextView (From: Christopher Lloyd <email@hidden>)
 >Re: wrapping text in an NSTextView (From: Max Cantor <email@hidden>)

  • Prev by Date: Re: Still having problume with Security API
  • Next by Date: Re: Cocoa CGI
  • Previous by thread: Re: wrapping text in an NSTextView
  • Next by thread: Wrapping text in an NSTextView
  • Index(es):
    • Date
    • Thread