Example #1
0
            public tbRelatorioRetangulosRow AddtbRelatorioRetangulosRow(
                int nIdExportador,
                int nIdTipo,
                int nIdRelatorio,
                int nIdRetangulo,
                int nX1,
                int nY1,
                int nX2,
                int nY2,
                System.Double nEspessura,
                short nCorR,
                short nCorG,
                short nCorB,
                bool bVisivelImpressao,
                short nGrupo,
                short nEstilo_caneta,
                int nCorRGB_fundo,
                bool bOpaco,
                int nCorRGB_linha)
            {
                tbRelatorioRetangulosRow rowtbRelatorioRetangulosRow = ((tbRelatorioRetangulosRow)(this.NewRow()));

                rowtbRelatorioRetangulosRow.ItemArray = new object[] {
                    nIdExportador,
                    nIdTipo,
                    nIdRelatorio,
                    nIdRetangulo,
                    nX1,
                    nY1,
                    nX2,
                    nY2,
                    nEspessura,
                    nCorR,
                    nCorG,
                    nCorB,
                    bVisivelImpressao,
                    nGrupo,
                    nEstilo_caneta,
                    nCorRGB_fundo,
                    bOpaco,
                    nCorRGB_linha
                };
                this.Rows.Add(rowtbRelatorioRetangulosRow);
                return(rowtbRelatorioRetangulosRow);
            }
Example #2
0
 public tbRelatorioRetangulosRowChangeEvent(tbRelatorioRetangulosRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Example #3
0
 public void RemovetbRelatorioRetangulosRow(tbRelatorioRetangulosRow row)
 {
     this.Rows.Remove(row);
 }
Example #4
0
 public void AddtbRelatorioRetangulosRow(tbRelatorioRetangulosRow row)
 {
     this.Rows.Add(row);
 }