TechDraw Symbol

TechDraw Symbol.png TechDraw Symbol

Menu location
TechDraw → Symbol
Workbenches
TechDraw
Default shortcut
See also


Description

The Symbol tool inserts an SVG file into the page as a view

How to use

  1. Press the Symbol.png Symbol button
  2. A File Save dialog will open. Select a location and file name.

Options

None.

Properties

Scripting

SVG files can be inserted into a drawing page using Python.

sym = FreeCAD.ActiveDocument.addObject('TechDraw::DrawViewSymbol','TestSymbol')
rc = page.addView(anno)
f = open(unicode(symbolFileSpec,'utf-8'),'r')
svg = f.read()
f.close()
sym.Symbol = svg
rc = page.addView(sym) 


Notes

Online version: "http://www.freecadweb.org/wiki/index.php?title=TechDraw_Symbol&oldid=207863"

Navigation menu