Implement this method to customize the menu of a pop-up–style path.
Original signature is '- (void)pathCell:(NSPathCell *)pathCell willPopUpMenu:(NSMenu *)menu'
Available in Mac OS X v10.5 and later.

C# | Visual Basic | Visual C++ |
public delegate void PathCellWillPopUpMenuEventHandler( NSPathCell pathCell, NSMenu menu )
Public Delegate Sub PathCellWillPopUpMenuEventHandler ( _ pathCell As NSPathCell, _ menu As NSMenu _ )
public delegate void PathCellWillPopUpMenuEventHandler( NSPathCell^ pathCell, NSMenu^ menu )

- pathCell (NSPathCell)
- The path cell that sent the message.
- menu (NSMenu)
- The pop-up menu to be displayed.

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