Modifying setvar CmdLineListBGColor

Hi there,
Is it possible to modify these setvars through lisp??

  • CmdLineListBgColor
  • CmdLineListFgColor
  • CmdLineEditBgColor
  • CmdLineEditFgColor

Thank you advance for your reply.

Phillip

Comments

  • You should be able to use the setcfg function.

    (getcfg "Name")
    (setcfg "Name" "Value")
    
  • Using Getvar / Setvar also works

    (getvar "Name")
    (setvar "Name" "Value")
    

    Getcfg + Setcfg gives access to all values defined within SETTINGS. You do need to be aware that values are given and set as strings.

    Regards,
    Jason Bourhill
    CAD Concepts

  • Thank you gentlemen... duhhh... not sure what I did earlier today but for some reason I didn't seem to be able to retrieve the value with getvar.
    I feel silly but I'll get over it. Thanks again.
    :) Phil

This discussion has been closed.