TechDraw "Вставка аннотаций форматированным текстом"

From FreeCAD Documentation
This page is a translated version of the page TechDraw RichTextAnnotation and the translation is 56% complete.
Outdated translations are marked like this.
Other languages:

Вставка аннотаций форматированным текстом

Системное название
TechDraw_RichTextAnnotation
Расположение в меню
TechDraw → Заметки → Вставка аннотаций форматированным текстомs
Верстаки
TechDraw
Быстрые клавиши
Нет
Представлено в версии
0.19
См. также
Шаблоны, Draft SVG, Добавить Линию-выноску в Вид

Описание

The TechDraw RichTextAnnotation tool adds a formatted annotation block to a Leaderline or a View.

Stand alone RichTextAnnotation

Применение

  1. If there are multiple drawing pages in the document: optionally activate the desired page by selecting it in the Tree view.
  2. To attach the RichTextAnnotation to a Leaderline, select the line in the Tree view or on the page.
  3. There are several ways to invoke the tool:
    • Press the Insert Rich Text Annotation button.
    • Select the TechDraw → Annotations → Insert Rich Text Annotation option from the menu.
  4. If there are multiple drawing pages in the document and you have not yet activated a page, the Page Chooser dialog box opens: introduced in version 0.20
    1. Select the desired page.
    2. Press the OK button.
  5. A task panel opens.
  6. The task panel allows quick entry of text.
  7. The Start Rich Text Editor button opens a full featured editor:
    1. When done, press the button to save your changes and close the editor.
  8. Press the OK button to close the task panel.

Примечания

  • After creation a RichTextAnnotation can be edited by double clicking it on the page.

Свойства

  • ДанныеX,Y: The location of the block. Relative to the end of the line if attached to a Leaderline, otherwise this is the position on the page.
  • ДанныеShowFrame: Draws an outline around the block.
  • ДанныеMaxWidth: Limits the horizontal size of the block. A value of -1 is for unlimited width.
  • ДанныеAnnoText: The HTML text of the block.

Программирование

См. так же: TechDraw API и Основы составления скриптов FreeCAD.

The RichTextAnnotation tool can be used in macros and from the Python console.

myPage = FreeCAD.ActiveDocument().Page
myBase = FreeCAD.ActiveDocument().View
blockObj = FreeCAD.ActiveDocument.addObject('TechDraw::DrawRichAnno','DrawRichAnno')
FreeCAD.activeDocument().myPage.addView(blockObj)
blockObj.X = 5
blockObj.Y = 5
blockObj.AnnoText = myHTMLText