lmgrClearLibDisplayOverride
lmgrClearLibDisplayOverride(g_libNames) =>n_number
Description
Removes the display override for a library including the color and icon values specified by lmgrSetLibDisplayOverride. When a display override is removed for a library, the default value for the color and icon that is set to Library Manager settings is displayed.
Arguments
Value Returned
|
The number of overrides cleared for the specified library name. It can be equal to or less than the number of names in g_libNames. |
Examples
Displays the number of overrides cleared that are specified by lmgrSetLibDisplayOverride for "US_8ths", "basic", and "not_any_defined_lib" libraries.
car( errset( lmgrSetLibDisplayOverride( list( "US_8ths" "basic") ?color "green" ) t ) )
=> t
car( errset( lmgrClearLibDisplayOverride( "US_8ths" ) t ) )
=> 1
car( errset( lmgrClearLibDisplayOverride( list( "basic" "basic" "undefined" ) ) t ) )
=> 1
car( errset( lmgrClearLibDisplayOverride( "not_any_defined_lib" ) t ) )
=> 0
Related Topics
lmgrClearLibDisplayColorOverride
Return to top