Example #1
0
            public ComposerRow AddComposerRow(System.DateTime Birth, string Country, System.DateTime Death, string First, string Last)
            {
                ComposerRow rowComposerRow = ((ComposerRow)(this.NewRow()));

                rowComposerRow.ItemArray = new object[] {
                    Birth,
                    Country,
                    Death,
                    First,
                    Last
                };
                this.Rows.Add(rowComposerRow);
                return(rowComposerRow);
            }
Example #2
0
            public ComposerRow AddComposerRow(string First, string Last, string Country, System.DateTime Birth, System.DateTime Death)
            {
                ComposerRow rowComposerRow = ((ComposerRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    First,
                    Last,
                    Country,
                    Birth,
                    Death
                };
                rowComposerRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowComposerRow);
                return(rowComposerRow);
            }
Example #3
0
 public ComposerRowChangeEvent(ComposerRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Example #4
0
 public void RemoveComposerRow(ComposerRow row)
 {
     this.Rows.Remove(row);
 }
Example #5
0
 public void AddComposerRow(ComposerRow row)
 {
     this.Rows.Add(row);
 }
Example #6
0
 public ComposerRowChangeEvent(ComposerRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }