- GuiCommand: Name:TechDraw PageDefault MenuLocation:TechDraw → Insert Default Page Workbenches:TechDraw SeeAlso:TechDraw Page Template, TechDraw Templates
The New Default tool creates a new Page object using the the template file specified in the TechDraw Preferences.
*Default template that comes with TechDraw: A4 page in landscape orientation, with editable text fields*- Press the Insert Default Page button. (An active document must exist.)
- If a Page is marked as "do not keep updated" either through the KeepUpdated Property or by the setting in Preferences, it will ignore changes in the 3D model. You may notice anomalies (missing geometry, missing Dimension values, etc) in the appearance of the Page. These will correct themselves once the Page is updated. The Page will have this icon in the tree while updating is suspended. This setting also affects the startup process. If the Page is marked "do not keep updated" it will not be drawn at program start.
If the default template is not specified in your user configuration file
$INSTALL_DIR/Mod/TechDraw/Templates/A4_LandscapeTD.svg
Where
/usr/share/freecad/Mod/TechDraw/Templates/A4_LandscapeTD.svg
-
Projection Type: Default projection type (First or Third Angle) for this Page.
-
Keep Updated: If false, Page is not updated with changes to the 3D model. Useful for complicated/slow drawings. See Notes.
-
Template: A link to this Page's Template object.
-
Views: A list of links to the Views on this Page.
-
Scale: Default scale for Views in this Page.
See also:
TechDraw API and FreeCAD Scripting Basics.
The New Default tool can be used in macros and from the Python console by using the following functions:
page = FreeCAD.ActiveDocument.addObject('TechDraw::DrawPage','Page')
template = FreeCAD.ActiveDocument.addObject('TechDraw::DrawSVGTemplate','Template')
template.Template = templateFileSpec
page.Template = FreeCAD.ActiveDocument.Template
- Creates a new Page in the current document
See also:
TechDraw Templates for more information on creating templates.
Once a new page has been created, its Template
attribute holds an EditableTexts
dictionary with the name of the editable fields (keys) and their textual values. Copy this dictionary to a variable, make changes, and then re-assign the dictionary to the EditableTexts
attribute to see the changes.
page = FreeCAD.ActiveDocument.Page
texts = page.Template.EditableTexts
for key, value in texts.items():
print("{0} = {1}".format(key, value))
texts["FC-Title"] = "The title of my page"
page.Template.EditableTexts = texts
{{TechDraw Tools navi}}
documentation index > TechDraw > TechDraw PageDefault