|
//------------------------------------------------------------------------------
// <copyright file="DrawListViewSubItemEventHandler.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Windows.Forms
{
using System.Diagnostics;
using System;
/// <include file='doc\DrawListViewSubItemEventHandler.uex' path='docs/doc[@for="DrawListViewSubItemEventHandler"]/*' />
/// <devdoc>
/// Handler for the ListView's DrawSubItem event.
/// </devdoc>
public delegate void DrawListViewSubItemEventHandler(object sender, DrawListViewSubItemEventArgs e);
}
|