- (NSParagraphStyle *) paragraphStyleInTextView: (NSTextView *) textView atIndex: (int) index { NSTextStorage *storage = [textView textStorage]; NSDictionary *attributes; NSRange effectiveRange; attributes = [storage attributesAtIndex: index effectiveRange: &effectiveRange]; NSParagraphStyle *style; style = [attributes valueForKey: NSParagraphStyleAttributeName]; return (style); } // paragraphStyleInTextView