|
Расположение в меню |
---|
TechDraw → Symbol |
Верстаки |
TechDraw |
Быстрые клавиши |
См. также |
The Symbol tool inserts an SVG file into the page as a view
None.
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)