Author Topic: Mleader style: TextAttachmentDirection & ExtendLeaderToText in AutoCAD 2009  (Read 1641 times)

0 Members and 1 Guest are viewing this topic.

Andrey Bushman

  • Swamp Rat
  • Posts: 864
I change the Multileader style settings for AutoCAD 2013:
Code - C#: [Select]
  1. ...
  2. // mleaderStyle.TextAttachmentDirection = AcDb.TextAttachmentDirection.AttachmentHorizontal; // Horisontal attachment
  3. mleaderStyle.TextAttachmentDirection = AcDb.TextAttachmentDirection.AttachmentVertical; // Vertical attachment
  4. mleaderStyle.ExtendLeaderToText = false; // Extend leader to text
  5. ...
  6.  
How can I do it for AutoCAD 2009? I can't find the similar properties in MLeaderStyle, or in AcadMLeaderStyle (COM).

Andrey Bushman

  • Swamp Rat
  • Posts: 864
Problem is solved: I compared the "Content" tabs for AutoCAD 2013 & AutoCAD 2009... AutoCAD 2009 has not such properties. :)