HelpTools[Database]
RemoveAttribute
set attribute of a help database
Calling Sequence
Parameters
Description
Examples
Compatibility
RemoveAttribute( path, attribute )
path
-
string; path to an existing help database
attribute
string or symbol; name of the attributes
The RemoveAttribute command removes custom attributes from help database. The built in attributes cannot be removed.
Help database must be writable in order to remove an attribute.
with⁡HelpTools:with⁡Database:
Create help database in home folder that will be accessible after restart
dir≔FileTools:-JoinPath⁡maple,toolbox,UserHelp,lib,base=homedir
dir≔C:\Users\jsmith\maple\toolbox\UserHelp\lib
ifnotFileTools:-Exists⁡dirthenFileTools:-MakeDirectory⁡dir,recurse=trueendif:
hdb≔Create⁡dir
C:\Users\jsmith\maple\toolbox\UserHelp\lib\maple.help
Set custom attribute
SetAttribute⁡hdb,my_attribute,true
Remove custom attribute
RemoveAttribute⁡hdb,my_attribute
The HelpTools[Database][RemoveAttribute] command was introduced in Maple 18.
For more information on Maple 18 changes, see Updates in Maple 18.
See Also
HelpTools[Database][SetAttribute]
Download Help Document