高级会员
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
|
【转帖】mtext9c,,u=2205 etc0
mtext(%%c,,\u+2205 etc)
special characters in mtext
hi,
is there a function in opendwg libraries to convert special characters in mtext and text to corresponding symbols as listed below?
%%c to Ø (diameter)
%%d to ° (degree)
%%p to ± ( plus/minus)
\u+2205 to Ø diameter
\u+00b0 to ° (degree)
\u+00b1 ± ( plus/minus)
do i need to write a function myself.i am not very familiar with autocad.please help me.
thanks
last edited by singhn; 26th november 2004 at 08:32 amfff">.
help
i am wondering why nobody is answering my question.is this question so silly?somebody please help me with this.even little hint will help me.
thanks
last edited by singhn; 26th november 2004 at 08:35 pmfff">.
we use simple post processing to replace autocad special sequences by our characters (just string.replace(..., ...)).
take note that symbols degree & plus/minus are in standard windows charset, but diameter sign is unicode symbol (0x2300) and not all ttf fonts contain it. so you can use latin capital letter o with stroke (u+00d8) instead.
best regards,
ivan obraztsov
quote:
originally posted by ivan obraztsov
we use simple post processing to replace autocad special sequences by our characters (just string.replace(..., ...)).
take note that symbols degree & plus/minus are in standard windows charset, but diameter sign is unicode symbol (0x2300) and not all ttf fonts contain it. so you can use latin capital letter o with stroke (u+00d8) instead.
as i understand from this is i need to write function to replace these special characters.if possible could you please tell me where can i find list of these special characters?
thanks,
singhn
quote:
originally posted by singhn
if possible could you please tell me where can i find list of these special characters?
in autocad user documentation (help). explore follow topics:
control codes and special characters
special unicode characters
unicode strings, control codes, and special characters
best regards,
ivan obraztsov
|