lmgrGetLibDisplayOverride
lmgrGetLibDisplayOverride(t_libName) =>l_dpl/ nil
Description
Returns the color and icon display override settings specified by lmgrSetLibDisplayOverride and related lmgrClear functions called earlier in Virtuoso Studio.
Arguments
Value Returned
Examples
Returns the icon and color for basic and US_8ths libraries specified by lmgrSetLibDisplayOverride.
lmgrSetLibDisplayOverride ( list( "US_8ths" "basic") ?icon "test.png" ?color "green")
=>t
lmgrSetLibDisplayOverride ( "US_8ths" ?color "#00ffff")
=>t
lmgrGetLibDisplayOverride ( "basic" )
=>(nil icon ("test.png") color ("green"))
lmgrGetLibDisplayOverride( "US_8ths" )
=>(nil icon ("test.png") color ("#00ffff"))
lmgrGetLibDisplayOverride( "no_override_for_library" )
=>nil
Related Topics
lmgrClearLibDisplayColorOverride
lmgrClearLibDisplayIconOverride
Return to top