I develop a Calc Add-In with huge set of sheet functions. I would like to put them into a new category.
In LibreOffice Calc Java extension, the in XAddIn
interface has two functions:
getProgrammaticCategoryName()
andgetDisplayCategoryName()
.
From Apache I see that getProgrammaticCategoryName
must return one of existing categories, while I would like to have a new one. It is not clear if getDisplayCategoryName
can return a new category. But it is not called anyway, as I can see from logs.
Is it possible to create a new category?