Assembly: Adhoc;
Namespace: Prognoz.Platform.Interop.Adhoc;
The AdhocUserViewForm class is used to work with a visualizer form for the plugin.
A visualizer form contains components that form plugin appearance, and a code that describes logic of component work in the plugin.
The ready visualizer form must be inherited from the AdhocUserViewForm class.
Features of visualizer form code:
If the plugin must support stored properties, create implementation of the AdhocUserViewForm.SaveSettings and AdhocUserViewForm.LoadSettings methods.
If the plugin must support particular data sources, create implementation of the AdhocUserViewForm.SupportedSource property and specify ClassId of required sources.
The example of creating a plugin is given in the Creating a Plugin section.
Class to get analog of the Class class:
None;
Class to get analog of the Class class object:
None;
Property name | Brief description | |
The Source property determines a plugin data source. | ||
The SupportedSource property returns data source types supported by a plugin. |
Method name | Brief description | |
The LoadSettings method loads plugin settings from XML file. | ||
The SaveSettings method saves plugin settings in the XML format. |
See also: