TechDraw "Вставить страницу по умолчанию"

From FreeCAD Documentation
Revision as of 17:40, 11 September 2021 by Evgeniy (talk | contribs) (Created page with "{{Emphasis|См. так же:}} TechDraw API и Основы составления скриптов FreeCAD.")
Other languages:

Вставить страницу по умолчанию

Системное название
TechDraw_PageDefault
Расположение в меню
TechDraw → Вставить страницу по умолчанию
Верстаки
TechDraw
Быстрые клавиши
Нет
Представлено в версии
-
См. также
Вставить страницу используя шаблон, Шаблоны TechDraw

Описание

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

Применение

Примечания

  • 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 user.cfg, the tool will try

$INSTALL_DIR/Mod/TechDraw/Templates/A4_LandscapeTD.svg

Where $INSTALL_DIR is the directory where FreeCAD was installed, for example

/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.

Программирование

См. так же: TechDraw API и Основы составления скриптов FreeCAD.

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

Editable text fields

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