CustomVisualizerProxy.ClassName Property
Gets the name of the class implementing the custom visualizer.
Syntax
public System.String ClassName { get; }
Property Value
Default: ""
The name of the class implementing the custom visualizer.
Remarks
For a .NET or Java custom visualizer, this is the name (including namespace or package name) of the class implementing the custom visualizer.
For a C++ custom visualizer, this is only a symbolic name passed to a factory function that should create the custom visualizer instance. For this to work, a C++ library implementing one or more custom visualizers must export one or both of the following functions, with the specified names and signatures:
extern "C" __declspec(dllexport) ICustomVisualizer* CreateCppCustomViualizer(const char* name);
extern "C" __declspec(dllexport) ICustomNativeVisualizer* CreateCppCustomNativeVisualizer(const char* name);
The functions should create an instance of the custom visualizer. The name parameter is the value of the ClassName property of the proxy. This makes it possible to implement several different custom visualizers in the same library, and use this parameter to instantiate the correct class.
Platforms
Windows, Linux, Android