コード例 #1
0
            public PrintDiagramRow AddPrintDiagramRow(byte[] LogoImage)
            {
                PrintDiagramRow rowPrintDiagramRow = ((PrintDiagramRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    LogoImage
                };
                rowPrintDiagramRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowPrintDiagramRow);
                return(rowPrintDiagramRow);
            }
コード例 #2
0
 public PrintDiagramRowChangeEvent(PrintDiagramRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
コード例 #3
0
 public void RemovePrintDiagramRow(PrintDiagramRow row)
 {
     this.Rows.Remove(row);
 }
コード例 #4
0
 public void AddPrintDiagramRow(PrintDiagramRow row)
 {
     this.Rows.Add(row);
 }