Benutzer-Werkzeuge

Webseiten-Werkzeuge


tabellenkalkulation:einfuehrung_in_die_makroprogrammierung_ii

Tabellenkalkulation: Einführung in die Makroprogrammierung II

Listing 1:Lesen und Schreiben in eine Tabelle

  1. '
  2. ' utility functions
  3. '
  4. ' writeCell writes a number to the table cell.
  5. ' @param xPos zero based table position
  6. ' @param yPos zero based table position
  7. ' @param value
  8. Function writeCell( xPos as Integer, yPos as Integer, value as Double)
  9. Dim myDoc
  10. Dim mySheet
  11. Dim myCell
  12. myDoc = thisComponent
  13. mySheet = myDoc.sheets( 0 )
  14. myCell = mySheet.getCellByPosition( xPos, yPos )
  15. myCell.setValue( value )
  16. End Function
  17. ' readCell reads a number from the given cell position.
  18. ' @param xPos zero based table position
  19. ' @param yPos zero based table position
  20. ' @return a double (integer) value representing the given position
  21. Function readCell( xPos as Integer, yPos as Integer) as Double
  22. Dim myDoc
  23. Dim mySheet
  24. myDoc = thisComponent
  25. mySheet = myDoc.sheets( 0 )
  26. readCell = mySheet.getCellByPosition( xPos, yPos ).getValue()
  27. End Function
tabellenkalkulation/einfuehrung_in_die_makroprogrammierung_ii.txt · Zuletzt geändert: 2024/01/26 18:37 von torsten.roehl