|
Menu location |
---|
TechDraw → Annotation |
Workbenches |
TechDraw |
Default shortcut |
See also |
The Annotation tool adds a text block to a drawing page.
None.
ADD_PROPERTY_TYPE(Text ,("Default Text"),vgroup,App::Prop_None,"The text to be displayed"); ADD_PROPERTY_TYPE(Font ,(fontName.c_str()),vgroup,App::Prop_None, "The name of the font to use"); ADD_PROPERTY_TYPE(TextColor,(0.0f,0.0f,0.0f),vgroup,App::Prop_None,"The color of the text"); ADD_PROPERTY_TYPE(TextSize,(8),vgroup,App::Prop_None,"The size of the text in mm"); ADD_PROPERTY_TYPE(MaxWidth,(-1.0),vgroup,App::Prop_None,"The maximum width of the Annotation block"); ADD_PROPERTY_TYPE(LineSpace,(80),vgroup,App::Prop_None,"Line spacing adjustment"); TextStyle.setEnums(TextStyleEnums); ADD_PROPERTY(TextStyle, ((long)0));
Note: Annotation inherits all applicable basic View properties except Scale. Use the TextSize property instead.
Annotations can be added to Pages using Python.
anno = FreeCAD.ActiveDocument.addObject('TechDraw::DrawViewAnnotation','TestAnno') anno.Text = ['Different Text'] anno.TextStyle = 'Bold' rc = page.addView(anno)