|
Menu location |
---|
TechDraw → New Pick |
Workbenches |
TechDraw |
Default shortcut |
x x |
See also |
TechDraw New Default |
The New Pick tool creates a new Page using the a Template file selected from a dialog. The starting directory for the dialog can be specified in Preferences
None.
The New Pick tool can by used in macros and from the python console by using the following functions:
templateFileSpec = QtGui.QFileDialog.getOpenFileName(self.baseWidget, dialogCaption, dialogDir, dialogFilter) page = FreeCAD.ActiveDocument.addObject('TechDraw::DrawPage','Page') template = FreeCAD.ActiveDocument.addObject('TechDraw::DrawSVGTemplate','Template') template.Template = templateFileSpec page.Template = FreeCAD.ActiveDocument.Template