• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    .NET

    Reply
    Contributor
    karea
    Posts: 15
    Registered: ‎01-27-2011
    Accepted Solution

    How to get the "Support File Search Path" with code?

    432 Views, 3 Replies
    03-25-2011 06:11 AM

    Hi:

    I would like to get de  "Support File Search Path" and "Working Support File Search Path" from Option in menu "Tools".

     

    With VBA the name of dictionay was `DWGPROPS' and I used

     

    Const DICTIONARY_NAME = "DWGPROPS"

    Set DwgInfo = ThisDrawing.Dictionaries(DICTIONARY_NAME)

    DwgInfo.GetXRecordData DataType, Data


    but with .NET the dictionary name isn´t "DWGPROPS"

     

    thanks

    Please use plain text.
    Active Contributor
    Posts: 30
    Registered: ‎03-22-2010

    Re: How to get the "Support File Search Path" with code?

    03-25-2011 06:33 AM in reply to: karea

    ApplicationServices.Application.AcadApplication.Preferences.files.SupportPath

     

    same for all the other "options"..

    ApplicationServices.Application.AcadApplication.Preferences.files.____________

    Please use plain text.
    Moderator
    Alexander.Rivilis
    Posts: 1,167
    Registered: ‎04-09-2008

    Re: How to get the "Support File Search Path" with code?

    03-25-2011 07:59 AM in reply to: C_Witt

    Another way is:

    string support_path = Application.GetSystemVariable("ACADPREFIX") as string;


    Пожалуйста не забывайте про Утвердить в качестве решения!Утвердить в качестве решения и Give Kudos!Баллы
    Please remember to Accept Solution!Accept as Solution and Give Kudos!Kudos

    Please use plain text.
    Contributor
    karea
    Posts: 15
    Registered: ‎01-27-2011

    Re: How to get the "Support File Search Path" with code?

    03-25-2011 10:26 AM in reply to: karea

    it is easier than it thought!

     

    thaks,

     

    Please use plain text.