Spreadsheet Create/pl


Spreadsheet Create.png Spreadsheet Create

Lokalizacja menu
Spreadsheet -> Create
Workbenches
Spreadsheet
Domyślny skrót
żaden
Zobacz także
żaden


Description

This tool adds a new spreadsheet object to the active document. The spreadsheet can then be edited with standard FreeCAD editing methods (right-clicking it in the tree view or using the Std Edit command.

How to use

  1. Press the Spreadsheet Create.png Spreadsheet Create button
  2. Press the Std Edit.png Std Edit button to edit the spreadsheet contents
  3. Edit the contents of the cells
  4. Close the spreadsheet editor tab when you are finished, the values are saved automatically as you type them

Options

Scripting

Spreadsheets can be created from python scripts and macros using the makeSpreadsheet() function:

 import Spreadsheet
 mySpreadsheet = Spreadsheet.makeSpreadsheet()

The contents of the spreadsheet can then be manipulated like this:

 mySpreadsheet.Proxy.A1 = "my text"
 print mySpreadsheet.Proxy.A1

Spreadsheet objects can also be created purely in the python space, with no existence in the FreeCAD document. These won't be saved when you close the FreeCAD file, so it is only meant for temporary purposes:

 import Spreadsheet
 myPySpreadsheet = Spreadsheet.Spreadsheet()
 myPySpreadsheet.A1 = "my other text"
 print myPySpreadsheet.A1

Limitations

Online version: "http://www.freecadweb.org/wiki/index.php?title=Spreadsheet_Create/pl&oldid=282373"

Navigation menu