C# Class ARCed.Plugins.RegistryEntry

Represents an entry in the plugin registry.
Inheritance: IPluginClient
Show file Open project: borisblizzard/arcreator Class Usage Examples

Public Methods

Method Description
RegistryEntry ( Plugin plugin, Type type, string name, string className ) : System

Constructs a new RegistryEntry object

Show ( ) : void

Displays the contents in the host's default dock panel

Show ( DockPanel panel ) : void

Displays the contents in the given panel

Method Details

RegistryEntry() public method

Constructs a new RegistryEntry object
public RegistryEntry ( Plugin plugin, Type type, string name, string className ) : System
plugin Plugin The plugin the entry is from
type System.Type The invokable type found in the plugin
name string The simple name of the entry
className string The full class name, including namespaces of the type
return System

Show() public method

Displays the contents in the host's default dock panel
public Show ( ) : void
return void

Show() public method

Displays the contents in the given panel
public Show ( DockPanel panel ) : void
panel ARCed.UI.DockPanel The parent panel to dock the content in
return void