Wrapping of text around an image or shape.
Wrapping of text around an image or shape.
- Subject: Wrapping of text around an image or shape.
- From: "Sandeep Nair" <email@hidden>
- Date: Wed, 5 Nov 2008 19:09:15 +0530
Hi All,
I am trying to do text wrapping like pages app does.
i added a View as subview of NSTextView.
i want the text inside the TextView to wrap around
the subview rect (as like in the pages app).
for (glyphIndex = glyphRange.location; glyphIndex < NSMaxRange(glyphRange);
glyphIndex++) {
NSPoint location = [[tV layoutManager] locationForGlyphAtIndex:glyphIndex];
if(NSPointInRect(location, rect))
{
int index = [textView characterIndexForPoint: location];
index = [[tV layoutManager] characterIndexForGlyphAtIndex:glyphIndex];
anyone suggest me the right method to do this..
Thanks in Advance
Regards
Sandeep
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden