Adding a symbol to a ProcessBook display is done with the following VBA code:
Code:Dim MySymbol As Symbol
Set MySymbol = ThisDisplay.Symbols.Add(pbSymbolTBSymbol)
My question is thus: How can it be removed?
A pbSymbol does not have a .Remove() method as far as I know. Is there another way?
My workaround is to simply to remove the visibility of the symbols, but this is a rather poor solution in my humble opinion.