Exemplo n.º 1
0
            public tbRelatorioLinhasRow AddtbRelatorioLinhasRow(
                int nIdExportador,
                int nIdTipo,
                int nIdRelatorio,
                int nIdLinha,
                int nX1,
                int nY1,
                int nX2,
                int nY2,
                System.Double nEspessura,
                short nCorR,
                short nCorG,
                short nCorB,
                bool bVisivelImpressao,
                short nGrupo,
                short nEstilo_caneta,
                short nEstilo_linha,
                int nCorRGB)
            {
                tbRelatorioLinhasRow rowtbRelatorioLinhasRow = ((tbRelatorioLinhasRow)(this.NewRow()));

                rowtbRelatorioLinhasRow.ItemArray = new object[] {
                    nIdExportador,
                    nIdTipo,
                    nIdRelatorio,
                    nIdLinha,
                    nX1,
                    nY1,
                    nX2,
                    nY2,
                    nEspessura,
                    nCorR,
                    nCorG,
                    nCorB,
                    bVisivelImpressao,
                    nGrupo,
                    nEstilo_caneta,
                    nEstilo_linha,
                    nCorRGB
                };
                this.Rows.Add(rowtbRelatorioLinhasRow);
                return(rowtbRelatorioLinhasRow);
            }
Exemplo n.º 2
0
 public tbRelatorioLinhasRowChangeEvent(tbRelatorioLinhasRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemplo n.º 3
0
 public void RemovetbRelatorioLinhasRow(tbRelatorioLinhasRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 4
0
 public void AddtbRelatorioLinhasRow(tbRelatorioLinhasRow row)
 {
     this.Rows.Add(row);
 }