C# 클래스 ZForge.Controls.XPTable.Events.TableModelEventArgs

Provides data for a TableModel's RowAdded and RowRemoved events
상속: System.EventArgs
파일 보기 프로젝트 열기: zhuangyy/Motion 1 사용 예제들

공개 메소드들

메소드 설명
TableModelEventArgs ( TableModel source ) : System

Initializes a new instance of the TableModelEventArgs class with the specified TableModel source, start index, end index and affected Column

TableModelEventArgs ( TableModel source, Row row, int fromIndex, int toIndex ) : System

Initializes a new instance of the TableModelEventArgs class with the specified TableModel source, start index, end index and affected Column

TableModelEventArgs ( TableModel source, int fromIndex, int toIndex ) : System

Initializes a new instance of the TableModelEventArgs class with the specified TableModel source, start index, end index and affected Column

메소드 상세

TableModelEventArgs() 공개 메소드

Initializes a new instance of the TableModelEventArgs class with the specified TableModel source, start index, end index and affected Column
public TableModelEventArgs ( TableModel source ) : System
source ZForge.Controls.XPTable.Models.TableModel The TableModel that originated the event
리턴 System

TableModelEventArgs() 공개 메소드

Initializes a new instance of the TableModelEventArgs class with the specified TableModel source, start index, end index and affected Column
public TableModelEventArgs ( TableModel source, Row row, int fromIndex, int toIndex ) : System
source ZForge.Controls.XPTable.Models.TableModel The TableModel that originated the event
row ZForge.Controls.XPTable.Models.Row The affected Row
fromIndex int The start index of the affected Row(s)
toIndex int The end index of the affected Row(s)
리턴 System

TableModelEventArgs() 공개 메소드

Initializes a new instance of the TableModelEventArgs class with the specified TableModel source, start index, end index and affected Column
public TableModelEventArgs ( TableModel source, int fromIndex, int toIndex ) : System
source ZForge.Controls.XPTable.Models.TableModel The TableModel that originated the event
fromIndex int The start index of the affected Row(s)
toIndex int The end index of the affected Row(s)
리턴 System