Load() public méthode

public Load ( ) : bool
Résultat bool
Exemple #1
0
        private void ListAdd(SALicense lic)
        {
            Table table = this.tableModules;                   // The Table control on a form - already initialised

            lic.Load();
            Row row = new Row(
                new Cell[] {
                new Cell(lic.Product),
                new Cell(lic.Version),
                new Cell(lic.Username),
                new Cell(lic.Message)
            }
                );

            row.Tag = lic;
            table.TableModel.Rows.Add(row);
        }
Exemple #2
0
 private void ListAdd(SALicense lic)
 {
     Table table = this.tableModules;       // The Table control on a form - already initialised
     lic.Load();
     Row row = new Row(
         new Cell[] {
             new Cell(lic.Product),
             new Cell(lic.Version),
             new Cell(lic.Username),
             new Cell(lic.Message)
         }
     );
     row.Tag = lic;
     table.TableModel.Rows.Add(row);
 }