_AddText

_AddText

Anonymous
Not applicable
265 Views
2 Replies
Message 1 of 3

_AddText

Anonymous
Not applicable
Set m_objText = ThisDrawing.ActiveLayout.AddText("MyText", m_ptText, 1.8) is NOT working

Set m_objText = ThisDrawing.PaperSpace.AddText("MyText", m_ptText, 1.8) is working

Can anyone tell me why ?

Thank you !
0 Likes
266 Views
2 Replies
Replies (2)
Message 2 of 3

Hallex
Advisor
Advisor
Try instead

Set m_objText = ThisDrawing.ActiveLayout.Block.AddText("MyText", m_ptText, 1.8)

See in the Help properties and methods of the 'Layout' object



~'J'~
_____________________________________
C6309D9E0751D165D0934D0621DFF27919
0 Likes
Message 3 of 3

Anonymous
Not applicable
Thank you !
0 Likes