Click here to Skip to main content
15,891,513 members
Articles / Programming Languages / C#

XPTable: .NET ListView Update

Rate me:
Please Sign up or sign in to vote.
4.86/5 (71 votes)
4 Jul 2007CPOL9 min read 1.3M   9.1K   242  
An update to the excellent XPTable control
/*
 * Copyright � 2005, Mathew Hall
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 *
 *    - Redistributions of source code must retain the above copyright notice, 
 *      this list of conditions and the following disclaimer.
 * 
 *    - Redistributions in binary form must reproduce the above copyright notice, 
 *      this list of conditions and the following disclaimer in the documentation 
 *      and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 
 * IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 
 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, 
 * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 
 * OF SUCH DAMAGE.
 */


using System;


namespace XPTable.Events
{
	/// <summary>
	/// Specifies the type of event generated when the value of a 
	/// Column's property changes
	/// </summary>
	public enum ColumnEventType
	{
		/// <summary>
		/// Occurs when the Column's property change type is unknown
		/// </summary>
		Unknown = 0,

		/// <summary>
		/// Occurs when the value of a Column's Text property changes
		/// </summary>
		TextChanged = 1,

		/// <summary>
		/// Occurs when the value of a Column's Alignment property changes
		/// </summary>
		AlignmentChanged = 2,

		/// <summary>
		/// Occurs when the value of a Column's HeaderAlignment property changes
		/// </summary>
		HeaderAlignmentChanged = 3,

		/// <summary>
		/// Occurs when the value of a Column's Width property changes
		/// </summary>
		WidthChanged = 4,

		/// <summary>
		/// Occurs when the value of a Column's Visible property changes
		/// </summary>
		VisibleChanged = 5,

		/// <summary>
		/// Occurs when the value of a Column's Image property changes
		/// </summary>
		ImageChanged = 6,

		/// <summary>
		/// Occurs when the value of a Column's Format property changes
		/// </summary>
		FormatChanged = 7,

		/// <summary>
		/// Occurs when the value of a Column's ColumnState property changes
		/// </summary>
		StateChanged = 8,

		/// <summary>
		/// Occurs when the value of a Column's Renderer property changes
		/// </summary>
		RendererChanged = 9,

		/// <summary>
		/// Occurs when the value of a Column's Editor property changes
		/// </summary>
		EditorChanged = 10, 

		/// <summary>
		/// Occurs when the value of a Column's Comparer property changes
		/// </summary>
		ComparerChanged = 11, 

		/// <summary>
		/// Occurs when the value of a Column's Enabled property changes
		/// </summary>
		EnabledChanged = 12,

		/// <summary>
		/// Occurs when the value of a Column's Editable property changes
		/// </summary>
		EditableChanged = 13,

		/// <summary>
		/// Occurs when the value of a Column's Selectable property changes
		/// </summary>
		SelectableChanged = 14,

		/// <summary>
		/// Occurs when the value of a Column's Sortable property changes
		/// </summary>
		SortableChanged = 15,

		/// <summary>
		/// Occurs when the value of a Column's SortOrder property changes
		/// </summary>
		SortOrderChanged = 16,

		/// <summary>
		/// Occurs when the value of a Column's ToolTipText property changes
		/// </summary>
		ToolTipTextChanged = 17,

		/// <summary>
		/// Occurs when a Column is being sorted
		/// </summary>
		Sorting = 18
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions