setTextContainerInset with different values for left and right

2008-04-18 Thread Ferhat Ayaz
Hi, how would I go about setting NSTextView up so its insets are dx1 from the left and dx2 from the right side? I guess setTextContainerInset: will set for both left and right the same value (dx1 = dx2). Thanks, Ferhat ___ Cocoa-dev

Re: setTextContainerInset with different values for left and right

2008-04-18 Thread Ben Lachman
You can subclass the text view and returned an origin point from - (NSPoint)textContainerOrigin. This will give you origin.x +inset.width on the left and just inset.width on the right when used in conjunction with setTextContainerInset. -Ben -- Ben Lachman Acacia Tree Software

Re: setTextContainerInset with different values for left and right

2008-04-18 Thread Ferhat Ayaz
thank you! Works great. On Apr 18, 2008, at 8:17 PM, Ben Lachman wrote: You can subclass the text view and returned an origin point from - (NSPoint)textContainerOrigin. This will give you origin.x +inset.width on the left and just inset.width on the right when used in conjunction with