relxGetCustomTabName
relxGetCustomTabName(
)
=> t_customTabName
Description
Returns the name of the custom tab. You can also use this function to rename the custom tab.
Arguments
Value Returned
Examples
The following example returns the name of the custom tab:
relxGetCustomTabName()
=> "Custom"
To rename the custom tab to myCustomTab, add the following SKILL code in the .cdsinit file:
(defun relxGetCustomTabName ()
"myCustomTab"
)
Return to top