Results 1 to 3 of 3

Thread: VLAX CHALLENGE - retrieving all available objects

  1. #1
    AUGI Addict bowlingbrad's Avatar
    Join Date
    2003-11
    Location
    Chicago
    Posts
    1,233
    Login to Give a bone
    0

    Default VLAX CHALLENGE - retrieving all available objects

    I'm trying to retrieve all of the different path objects from the 'files' tab object of the code below. Is there a way to list all of the available objects? The only one I know is 'SupportPath. I'm looking for all of the other path objects - Configuration, Autosave, menus, toolpalettes... Even nested paths as in the Printer Support File Path.

    Thanks in advance!

    Code:
    (setq acadObject (vlax-get-acad-object))
    (setq prefsObject (vlax-get-property acadObject 'Preferences))
    (setq tabnameObject (vlax-get-property prefsObject 'Files))
    (setq thePath (vlax-get-property tabnameObject 'SupportPath))

  2. #2
    Administrator Opie's Avatar
    Join Date
    2002-01
    Location
    jUSt Here (a lot)
    Posts
    9,106
    Login to Give a bone
    0

    Default Re: VLAX CHALLENGE - retrieving all available objects

    Here are a few taken from a (vlax-dump-object tabnameObject)
    • AutoSavePath
    • ColorBookPath
    • CustomIconPath
    • DriversPath
    • HelpFilePath
    • LogFilePath
    • PlotLogFilePath
    • PrinterConfigPath
    • PrinterDescPath
    • PrinterStyleSheetPath
    • PrintSpoolerPath
    • SupportPath
    • TempFilePath
    • TemplateDwgPath
    • TempXrefPath
    • TextureMapPath
    • ToolPalettePath
    • WorkspacePath
    If you have a technical question, please find the appropriate forum and ask it there.
    You will get a quicker response from your fellow AUGI members than if you sent it to me via a PM or email.
    jUSt

  3. #3
    AUGI Addict bowlingbrad's Avatar
    Join Date
    2003-11
    Location
    Chicago
    Posts
    1,233
    Login to Give a bone
    0

    Default Re: VLAX CHALLENGE - retrieving all available objects







    Thanks, Opie. I can't believe I forgot to take a dump.

    <rim shot>

Similar Threads

  1. 2011: Retrieving materials
    By Sigvald in forum Revit - API
    Replies: 2
    Last Post: 2012-04-20, 01:21 PM
  2. Retrieving all elements
    By Sigvald in forum Revit - API
    Replies: 2
    Last Post: 2012-03-22, 09:00 AM
  3. Brain Teaser Challenge - Can't see Objects in Drawing
    By jpaulsen in forum AutoCAD Civil 3D - General
    Replies: 0
    Last Post: 2009-08-20, 03:05 PM
  4. Retrieving deleted journals.
    By jacharlton in forum Revit Architecture - General
    Replies: 1
    Last Post: 2009-01-07, 04:49 PM
  5. Retrieving a Back Up
    By tbv in forum Revit Architecture - General
    Replies: 5
    Last Post: 2007-02-20, 02:34 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •