Returns the current rectangle being displayed for a given path component cell, with respect to a given frame in a given view.
Original signature is '- (NSRect)rectOfPathComponentCell:(NSPathComponentCell *)cell withFrame:(NSRect)frame inView:(NSView *)view'
Available in Mac OS X v10.5 and later.

C# | Visual Basic | Visual C++ |
public virtual NSRect RectOfPathComponentCellWithFrameInView( NSPathComponentCell cell, NSRect frame, NSView view )
Public Overridable Function RectOfPathComponentCellWithFrameInView ( _ cell As NSPathComponentCell, _ frame As NSRect, _ view As NSView _ ) As NSRect
public: virtual NSRect RectOfPathComponentCellWithFrameInView( NSPathComponentCell^ cell, NSRect frame, NSView^ view )

- cell (NSPathComponentCell)
- The path component cell.
- frame (NSRect)
- The frame of the view in which the cell appears.
- view (NSView)
- The view in which the cell appears.

The rectangle occupied by the path component cell. NSZeroRect is returned if cell is not found or is not currently visible.

- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)