|
Menüeintrag |
---|
TechDraw → Fügt eine Notiz in die aktive Zeichnung ein |
Arbeitsbereich |
TechDraw |
Standardtastenkürzel |
Siehe auch |
Das Werkzeug »Neue Notiz» fügt ein Textfeld in die Zeichnungsseite ein..
Keine.
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));
Hinweis: Mit Ausnahme von »Scale« übernimmt das Schriftfeld alle verwendbaren Eigenschaften aus der Standardansicht. Stattdessen kann die Eigenschaft »TextSize« dazu verwendet werden.
Mit Python kann das Textfeld auf den Seiten hinzugefügt werden.
anno = FreeCAD.ActiveDocument.addObject('TechDraw::DrawViewAnnotation','TestAnno') anno.Text = ['Different Text'] anno.TextStyle = 'Bold' rc = page.addView(anno)