'Declaration Public Event ColumnSorted As ColumnSortedEventHandler
public event ColumnSortedEventHandler ColumnSorted
The event handler receives an argument of type ColumnSortedEventArgs containing data related to this event. The following ColumnSortedEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Column (Inherited from Infragistics.Win.UltraWinListView.ColumnEventArgs) | Returns the UltraListViewColumnBase with which this instance is associated. |
Imports Infragistics.Win Imports Infragistics.Win.UltraWinListView Private Sub ultraListView1_ColumnSorting(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinListView.ColumnSortingEventArgs) Handles ultraListView1.ColumnSorting ' If the column's DataType is integer, disallow the sort. If e.Column.DataType Is GetType(Integer) Then e.Cancel = True Else ' If the new value is 'None', change it to 'Ascending'. If (e.NewValue = Sorting.None) Then e.NewValue = Sorting.Ascending End If End Sub Private Sub ultraListView1_ColumnSorted(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinListView.ColumnSortedEventArgs) Handles ultraListView1.ColumnSorted Me.lblSortStatus.Text = e.Column.TextResolved End Sub
using Infragistics.Win; using Infragistics.Win.UltraWinListView; using System.Diagnostics; private void ultraListView1_ColumnSorting(object sender, Infragistics.Win.UltraWinListView.ColumnSortingEventArgs e) { // If the column's DataType is integer, disallow the sort. if ( e.Column.DataType == typeof(int) ) e.Cancel = true; else { // If the new value is 'None', change it to 'Ascending'. if ( e.NewValue == Sorting.None ) e.NewValue = Sorting.Ascending; } } private void ultraListView1_ColumnSorted(object sender, Infragistics.Win.UltraWinListView.ColumnSortedEventArgs e) { this.lblSortStatus.Text = e.Column.TextResolved; }
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2