Interface IAddinOptionsEditor
Provides an extension point for Addins to provide a view to edit options.
Namespace: Algenta.Colectica.ViewModel
Assembly: Algenta.Colectica.ViewModel.dll
Syntax
public interface IAddinOptionsEditor
Remarks
Classes implementing this interface should be derived from a WPF Control or UserControl.
Properties
Title
The title to be displayed at the top of the view.
Declaration
string Title { get; }
Property Value
Type | Description |
---|---|
System.String |
Methods
LoadOptions()
Called when the application needs to load the options for display and editing.
Declaration
object LoadOptions()
Returns
Type | Description |
---|---|
System.Object |
StoreOptions(Object)
Called after the application user may have edited the options.
Declaration
void StoreOptions(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj |