Hello technical support,
after the following inheritance:
internal class CE_Node : Node, IStyledNode
everything works!
if I use:
public class CE_Node : Node, IStyledNode
I got the following compilation error
Building satellite assemblies...
Registering project output for COM Interop...
COM Interop registration failed. Could not find a type library for assembly 'NineRays.FlyGrid'.
Could you explain why the change from internal to public has such an effect?
Thanks in advance
Hans