pub unsafe trait NSTextAttachmentContainer: NSObjectProtocol {
// Provided methods
unsafe fn imageForBounds_textContainer_characterIndex(
&self,
image_bounds: CGRect,
text_container: Option<&NSTextContainer>,
char_index: NSUInteger,
) -> Option<Retained<NSImage>>
where Self: Sized + Message { ... }
unsafe fn attachmentBoundsForTextContainer_proposedLineFragment_glyphPosition_characterIndex(
&self,
text_container: Option<&NSTextContainer>,
line_frag: CGRect,
position: CGPoint,
char_index: NSUInteger,
) -> CGRect
where Self: Sized + Message { ... }
}
Available on crate feature
NSTextAttachment
only.Expand description
Provided Methods§
unsafe fn imageForBounds_textContainer_characterIndex( &self, image_bounds: CGRect, text_container: Option<&NSTextContainer>, char_index: NSUInteger, ) -> Option<Retained<NSImage>>
Available on crate features
NSImage
and NSTextContainer
and objc2-core-foundation
only.unsafe fn attachmentBoundsForTextContainer_proposedLineFragment_glyphPosition_characterIndex( &self, text_container: Option<&NSTextContainer>, line_frag: CGRect, position: CGPoint, char_index: NSUInteger, ) -> CGRect
Available on crate features
NSTextContainer
and objc2-core-foundation
only.