예제 #1
0
 public QuestionSelectionModeData.QuestionSelectionModesRow AddQuestionSelectionModesRow(int QuestionSelectionModeId, string Description, int TypeMode)
 {
     QuestionSelectionModeData.QuestionSelectionModesRow row = (QuestionSelectionModeData.QuestionSelectionModesRow)base.NewRow();
     row.ItemArray = new object[] { QuestionSelectionModeId, Description, TypeMode };
     base.Rows.Add(row);
     return(row);
 }
예제 #2
0
 public QuestionSelectionModesRowChangeEvent(QuestionSelectionModeData.QuestionSelectionModesRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
예제 #3
0
 public void RemoveQuestionSelectionModesRow(QuestionSelectionModeData.QuestionSelectionModesRow row)
 {
     base.Rows.Remove(row);
 }
예제 #4
0
 public void AddQuestionSelectionModesRow(QuestionSelectionModeData.QuestionSelectionModesRow row)
 {
     base.Rows.Add(row);
 }
 public QuestionSelectionModesRowChangeEvent(QuestionSelectionModeData.QuestionSelectionModesRow row, DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }