In This Article

PropertyGridItemActionHandler Delegate

A delegate that can process the specified PropertyGridItemActionRequest.

public delegate bool PropertyGridItemActionHandler(PropertyGridItemActionRequest request)

Parameters

Name Type Description
request PropertyGridItemActionRequest

The PropertyGridItemActionRequest to examine.

Returns

Type Description
bool

true if the request was processed successfully; otherwise, false.

Constructors

PropertyGridItemActionHandler(object, IntPtr)

public PropertyGridItemActionHandler(object @object, IntPtr method)
Parameter Type Description
object object
method IntPtr

Methods

BeginInvoke(PropertyGridItemActionRequest, AsyncCallback, object)

public virtual IAsyncResult BeginInvoke(PropertyGridItemActionRequest request, AsyncCallback callback, object @object)
Parameter Type Description
request PropertyGridItemActionRequest
callback AsyncCallback
object object

Returns

IAsyncResult

EndInvoke(IAsyncResult)

public virtual bool EndInvoke(IAsyncResult result)
Parameter Type Description
result IAsyncResult

Returns

bool

Invoke(PropertyGridItemActionRequest)

public virtual bool Invoke(PropertyGridItemActionRequest request)
Parameter Type Description
request PropertyGridItemActionRequest

Returns

bool