Wimark.Controls Class Library  

ListViewGroupEventHandler Delegate

Represents the method that will handle the AfterGroupExpand event of a ListView.

[Visual Basic]
<Serializable>
Public Delegate Sub ListViewGroupEventHandler( _
   ByVal sender As Object, _
   ByVal args As ListViewGroupEventArgs _
)
[C#]
[Serializable]
public delegate void ListViewGroupEventHandler(
   object sender,
   ListViewGroupEventArgs args
);
[C++]
[Serializable]
public __gc __delegate void ListViewGroupEventHandler(
   Object* sender,
   ListViewGroupEventArgs* args
);

Parameters [Visual Basic, C#, C++]

The declaration of your event handler must have the same parameters as the ListViewGroupEventHandler delegate declaration.

sender
The source of the event.
args
A ListViewGroupEventArgs that contains the event data.

Requirements

Namespace: Wimark.Controls

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows .NET Server family

Assembly: Wimark.Controls (in Wimark.Controls.dll)

See Also

Wimark.Controls Namespace | ListViewGroupEventArgs | ListView