Re: NSTextView How do you turn off line wrap?
Re: NSTextView How do you turn off line wrap?
- Subject: Re: NSTextView How do you turn off line wrap?
- From: Satoshi Matsumoto <email@hidden>
- Date: Sun, 18 Jan 2004 12:48:18 +0900
Hi,
on 04.1.18 9:09 AM, Bob Foster at email@hidden wrote:
>
I am sure this must be a FAQ and my apologies.
>
How do you turn off line wrap in an NSTextView?
Set the witdh of the textContainer to a large value like follows.
textContainer = [textView textContainer];
theSize = [textContainer containerSize];
theSize.width = 1.0e7;
[textContainer setContainerSize:theSize];
[textContainer setWidthTracksTextView:NO];
>
And where is there decent documentation?
http://developer.apple.com/documentation/Cocoa/Conceptual/TextStorageLayer/
Satoshi
-----------------------------------------------------
Satoshi Matsumoto <email@hidden>
816-5 Odake, Odawara, Kanagawa, Japan 256-0802
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.