Tells the delegate that the field editor for a text-displaying object has been requested.
Original signature is '- (id)windowWillReturnFieldEditor:(NSWindow *)sender toObject:(id)client'
Available in Mac OS X v10.0 and later.

Declaration Syntax
public delegate Id WindowWillReturnFieldEditorToObjectEventHandler(
NSWindow sender,
Id client
)
Public Delegate Function WindowWillReturnFieldEditorToObjectEventHandler ( _
sender As NSWindow, _
client As Id _
) As Id
public delegate Id^ WindowWillReturnFieldEditorToObjectEventHandler(
NSWindow^ sender,
Id^ client
)

Parameters
- sender (NSWindow)
- The window requesting the field editor from the delegate.
- client (Id)
- A text-displaying object to be associated with the field editor. If nil, the requested field editor is the default.

Return Value
The field editor for client; returns nil when the delegate has no field editor to assign.

Version Information
- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)
Assembly:
Monobjc.AppKit (Module: Monobjc.AppKit)