Draft Text
|
poziția meniului
|
Draft → Text
|
Workbenches
|
Draft, Arch
|
scurtătură
|
T E
|
A se vedea, de asemenea,
|
nici unul
|
|
Descriere
Unealta Text inserează o porţiune de text într-un punct dat din documentul curent. În prealabil, în meniul Editare, opţiunea Preferinţe, trebuie să setaţi mărimea şi culoarea textului în tab-ul Sarcini (Tasks).
Mod de utilizare
- Apăsaţi butonul
Draft Text ori apăsaţi tasta T, apoi tasta E.
- Daţi clic în fereastra de vizualizare 3D view sau introduceţi coordonatele.
- Introduceţi textul dorit, apăsând tasta ENTER pentru a trece la linie nouă.
- Apăsaţi DE DOUĂ ORI ENTER ca să terminaţi operaţia.
Opţiuni
Pressing CTRL will snap your point to available snap locations.
- To enter coordinates manually, simply enter the numbers, then press ENTER between each X, Y and Z component.
- Pressing ESC will cancel the operation.
- When editing the text, pressing ENTER or DOWN ARROW allow you to enter or edit a next line of text.
- Pressing UP ARROW allows you to edit a previous line of text.
- Pressing ENTER twice (thus leaving the last line empty) adds the text to the document and closes the editor.
Properties
- DATAPosition: The base point of the text block
- DATALabel Text: The contents of the text block
- VIEWDisplay Mode: Specifies if the text is aligned to the scene axes or always faces the camera
- VIEWFont Size: The size of the letters
- VIEWJustification: Specifies if the text is aligned to the left, right or center of the base point.
- VIEWLine Spacing: Specifies the space between lines of text
- VIEWRotation: Specifies a rotation to be applied to the text
- VIEWRotation Axis: Specifies the axis to use for the rotation
- VIEWFont Name: The font to use to draw the text. It can be a font name, such as "Arial", a default style such as "sans", "serif" or "mono", or a family such as "Arial,Helvetica,sans" or a name with a style such as "Arial:Bold". If the given font is not found on the system, a generic one is used instead.
Scriptare
Unealta Text poate fi folosită în macro-uri şi de la consola python cu ajutorul funcţiei următoare:
makeText (string or list, [Vector], [screenmode])
- Creează un obiect Text, într-un punct dat, dacă este furnizat un vector, care conține șirul sau șirurile dintr-o listă, câte un șir pe rând.
- În Ciorna curentă, se utilizează fontul, culorile şi dimensiunea textului specificate în Preferințe.
- Dacă modul Ecran este True, textul preia întotdeauna direcția de vizualizare, altfel se situează în planul XY.
- Înapoiază obiectul nou creat.
Exempluː
import FreeCAD,Draft
Draft.makeText("This is a sample text",FreeCAD.Vector(1,1,0))