コード例 #1
0
            public QuestionSubtypesRow AddQuestionSubtypesRow(string Name)
            {
                QuestionSubtypesRow rowQuestionSubtypesRow = ((QuestionSubtypesRow)(this.NewRow()));

                rowQuestionSubtypesRow.ItemArray = new object[] {
                    null,
                    Name
                };
                this.Rows.Add(rowQuestionSubtypesRow);
                return(rowQuestionSubtypesRow);
            }
コード例 #2
0
 public QuestionSubtypesRowChangeEvent(QuestionSubtypesRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
コード例 #3
0
 public void RemoveQuestionSubtypesRow(QuestionSubtypesRow row)
 {
     this.Rows.Remove(row);
 }
コード例 #4
0
 public void AddQuestionSubtypesRow(QuestionSubtypesRow row)
 {
     this.Rows.Add(row);
 }