Search the Community
Showing results for tags 'text style'.
-
I re-opened a dgn I haven't touched in months and when I started looking at the text all of the labels/text changed their style to 'Fancy'. I opened up other dgn's from different projects and every single one is 'Fancy' text. I recently updated Microstation (update 15) but not sure if this has anything to do with it. Is there anyway to revert these text changes?
-
- microstation
- text
-
(and 1 more)
Tagged with:
-
Hi. Just wondering if there is a procedure that I can use to select a text object and make its style the current text style. I can do this with dimensions with ^C^C-dimstyle;r;; because the -dimstyle option allows you to select an object. But the -textstyle option doesn't have this. Am I missing something or just another gap in LT? Thanks in advance.
-
Attribute text style reverts to Standard
Defpoints posted a topic in AutoCAD Bugs, Error Messages & Quirks
I have a block with an attribute definition. The text style of the attribute is set to SA-Text. In a new drawing, with the SA-Text text style already defined, the text style of the attribute reverts to Standard when the block is inserted. Any ideas? -
why do multileaders and dimensions have style commands and dialogue box (dimstyle, multileaderstyle) but text doesn't? It seems like it would be essential, or am I missing something. Just saying.
-
creating a text style? with oblique of 30 & -30 for isometrics
spaulus posted a topic in AutoCAD General
Do i need to create 2 styles, 1 with oblique of 30 and 1 with oblique of -30? Also can i put these on a tool palette? Thanks- 11 replies
-
- text style
- oblique angle
-
(and 1 more)
Tagged with:
-
Hi, I have use the Note Text (ISO) to create a new text styles with new text height 2 mm. I have also replace the text style used in the dimension styles with the new one. As to dimension, everything has been changed. As to the text, the change is not applied. I have also drawn a new page border that is listed. However I can't apply it to the current sheet. I have the following error: Right Clicking the new drawing border, I have the delete option but no such option for the "Default Border". Your help is greatly needed. Thanks.
-
Hi guys, I'm learning to use LISP functions and came across an problem. Maybe it has been asked thousand times, but I couldn't find an relative thread here. I want to create a function that checks if there is an text style named "Tekst 2.5". Now, the problem is that i can't get the text style to be annotative This is what I have: (defun c:test (/) (if (null (tblsearch "style" "tekst 2.5")) (entmake (list '(0 . "STYLE") '(100 . "AcDbSymbolTableRecord") '(100 . "AcDbTextStyleTableRecord") '(2 . "Tekst 2.5") ; Style name '(70 . 0) ; Standard flag values (bit-coded values) '(40 . 2.5) ; text height '(41 . 1.0) ; width factor '(50 . 0.0) ; oblique angle '(71 . 1) ; text generation "0" normal text '(42 . 0) ; last height used '(3 . "Arial.ttf") ; font file name '(4 . "") ; bigfont (blank for no) ) ; end list ) ; end entmake ) ; end if (princ) ) Does any of you know hou to get it annotative using entmake?