|
//------------------------------------------------------------------------------
// <copyright file="RetrieveVirtualItemEventHandler.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
/*
*/
namespace System.Windows.Forms {
using System.Diagnostics;
using System;
/// <include file='doc\RetrieveVirtualItemEventHandler.uex' path='docs/doc[@for="RetrieveVirtualItemEventHandler"]/*' />
/// <devdoc>
/// <para>
/// Represents the method that will handle the RetrieveVirtualItem event of a ListView.
/// </para>
/// </devdoc>
public delegate void RetrieveVirtualItemEventHandler(object sender, RetrieveVirtualItemEventArgs e);
}
|