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

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

공개 메소드들

메소드 설명
RowEventArgs ( Row source, Cell cell, int cellFromIndex, int cellToIndex ) : System

Initializes a new instance of the RowEventArgs class with the specified Row source, row index, start index, end index and affected Cell

RowEventArgs ( Row source, RowEventType eventType ) : System

Initializes a new instance of the RowEventArgs class with the specified Row source, row index, start index, end index and affected Cell

RowEventArgs ( Row source, int rowIndex, Cell cell, int cellFromIndex, int cellToIndex, RowEventType eventType ) : System

Initializes a new instance of the RowEventArgs class with the specified Row source, row index, start index, end index and affected Cell

비공개 메소드들

메소드 설명
SetRowIndex ( int rowIndex ) : void

메소드 상세

RowEventArgs() 공개 메소드

Initializes a new instance of the RowEventArgs class with the specified Row source, row index, start index, end index and affected Cell
public RowEventArgs ( Row source, Cell cell, int cellFromIndex, int cellToIndex ) : System
source ZForge.Controls.XPTable.Models.Row The Row that originated the event
cell ZForge.Controls.XPTable.Models.Cell The affected Cell
cellFromIndex int The start index of the affected Cell(s)
cellToIndex int The end index of the affected Cell(s)
리턴 System

RowEventArgs() 공개 메소드

Initializes a new instance of the RowEventArgs class with the specified Row source, row index, start index, end index and affected Cell
public RowEventArgs ( Row source, RowEventType eventType ) : System
source ZForge.Controls.XPTable.Models.Row The Row that originated the event
eventType RowEventType The type of event
리턴 System

RowEventArgs() 공개 메소드

Initializes a new instance of the RowEventArgs class with the specified Row source, row index, start index, end index and affected Cell
public RowEventArgs ( Row source, int rowIndex, Cell cell, int cellFromIndex, int cellToIndex, RowEventType eventType ) : System
source ZForge.Controls.XPTable.Models.Row The Row that originated the event
rowIndex int The index of the Row
cell ZForge.Controls.XPTable.Models.Cell The affected Cell
cellFromIndex int The start index of the affected Cell(s)
cellToIndex int The end index of the affected Cell(s)
eventType RowEventType The type of event
리턴 System