C# 클래스 ZForge.Controls.XPTable.Sorting.InsertionSorter

An InsertionSort implementation for sorting the Cells contained in a TableModel
상속: SorterBase
파일 보기 프로젝트 열기: zhuangyy/Motion 1 사용 예제들

공개 메소드들

메소드 설명
InsertionSorter ( TableModel tableModel, int column, IComparer comparer, SortOrder sortOrder ) : System

Initializes a new instance of the InsertionSorter class with the specified TableModel, Column index, IComparer and SortOrder

Sort ( ) : void

Starts sorting the Cells in the TableModel

메소드 상세

InsertionSorter() 공개 메소드

Initializes a new instance of the InsertionSorter class with the specified TableModel, Column index, IComparer and SortOrder
public InsertionSorter ( TableModel tableModel, int column, IComparer comparer, SortOrder sortOrder ) : System
tableModel ZForge.Controls.XPTable.Models.TableModel The TableModel that contains the data to be sorted
column int The index of the Column to be sorted
comparer IComparer The IComparer used to sort the Column's Cells
sortOrder SortOrder Specifies how the Column is to be sorted
리턴 System

Sort() 공개 메소드

Starts sorting the Cells in the TableModel
public Sort ( ) : void
리턴 void