New to Telerik UI for WinFormsStart a free 30-day trial

Defines the semantic of an event that occurs within a RadGridView instance.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

C#
public class GridViewEvent

Inheritance: objectGridViewEvent

Constructors

Initializes a new instance of the GridViewEvent class.

C#
public GridViewEvent(object sender, object originator, object[] arguments, GridViewEventInfo eventInfo)
Parameters:senderobject

The sender.

originatorobject

The originator.

argumentsobject[]

The arguments.

eventInfoGridViewEventInfo

The event info.

Properties

Gets the arguments associated with the event.

C#
public object[] Arguments { get; }

Gets the event information.

C#
public GridViewEventInfo Info { get; }

Gets the instance that raised the CLR event initially.

C#
public object Originator { get; }

Gets the instance that sends this event.

C#
public object Sender { get; }

Gets the GridViewSynchronizationService instance that dispatches this event.

C#
public GridViewSynchronizationService SynchronizationService { get; }