TechDraw DetailView

From FreeCAD Documentation
Revision as of 17:58, 1 February 2020 by Uwestoehr (talk | contribs) (initial)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

TechDraw DetailView

Menu location
TechDraw → Insert Detail View
Workbenches
TechDraw
Default shortcut
None
Introduced in version
-
See also
Insert View, Insert Projection Group

Description

The Detail tool creates a view of small area of an existing view.

Square window showing a detail of an existing view

How to use

  1. Select a part view in the 3D window or tree.
  2. If you have multiple drawing pages in your document, you will also need to select the desired page in the tree.
  3. Press the Insert Detail View button

The detail view can be displayed within a round or square "viewbox". This is controlled by the "Matting" preference setting.

Properties

  • DataBaseView: The part view on which this ViewDetail is based.
  • DataAnchor: The center of the detail view within the BaseView.
  • DataRadius: Control the size of the displayed area.
  • DataScale: Magnification level.
  • DataReference: An identifier to indicate the area of the BaseView being displayed.

Note: Detail inherits all applicable View properties.

Scripting

See also: TechDraw API and FreeCAD Scripting Basics.

The New Detail tool can be used in macros and from the Python console by using the following functions:

Detail = FreeCAD.ActiveDocument.addObject('TechDraw::DrawViewDetail','Detail')
...TBA

Notes