CTFrameGetVisibleStringRange(_:)
Returns the range of characters that actually fit in the frame.
Declaration
func CTFrameGetVisibleStringRange(_ frame: CTFrame) -> CFRangeParameters
- frame:
The frame whose visible character range is returned.
Return Value
A CFRange structure containing the backing store range of characters that fit into the frame, or if the function call is not successful or no characters fit in the frame, an empty range.
Discussion
This function can be used to cascade frames, because it returns the range of characters that can be seen in the frame. The next frame would start where this frame ends.