Examples of ajouteNLignesVierges()


Examples of freegressi.tableur.Tableur.ajouteNLignesVierges()

  public void notifyNouveauExperience(ArrayList<String> listeNoms, ArrayList<String> listeUnites) {
    GraphicModel.getInstance().setInitializing(true);
   
    Tableur tableur = new Tableur(listeNoms, listeUnites);
    // créer une ligne vierge pour commencer
    tableur.ajouteNLignesVierges(1, 0);  
    file = null;
    initSheetNumber(0);
    tableur.setName(baseSheetName + getNextSheetNumber());
    fireNouveauExperience(tableur);
    List<Tableur> sheetList = new ArrayList<>();
View Full Code Here

Examples of freegressi.tableur.Tableur.ajouteNLignesVierges()

   * Création d'une nouvelle feuille vierge
   */
  public void notifyNewSheet(){
    Tableur sheet = SpreadSheets.getInstance().getActiveSheet();
    Tableur newSheet = sheet.getEmptyCopy();
    newSheet.ajouteNLignesVierges(1, 0);
    int n = getNextSheetNumber();
    newSheet.setName(baseSheetName + n);
    SpreadSheets.getInstance().notifySheetAdded(newSheet, true);
  }

View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.