Class ViewDefinitionsManager
Manages the usable
Inheritance
System.Object
ViewDefinitionsManager
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Simplic.UI.ScheduleView
Assembly: Simplic.UI.dll
Syntax
public class ViewDefinitionsManager
Properties
| Improve this Doc View SourceSingleton
Declaration
public static ViewDefinitionsManager Singleton { get; }
Property Value
Type | Description |
---|---|
ViewDefinitionsManager |
ViewDefinitions
Gets the System.Collections.Generic.IDictionary<TKey, TValue> containing the registered
Declaration
public IDictionary<string, ViewDefinitionBase> ViewDefinitions { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.String, ViewDefinitionBase> |
Methods
| Improve this Doc View SourceRegisterViewdefinition(String, ViewDefinitionBase, Boolean)
Registers a
Declaration
public void RegisterViewdefinition(string name, ViewDefinitionBase definition, bool force = false)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The System.String representing the name of the item. |
ViewDefinitionBase | definition | A |
System.Boolean | force | The System.Boolean value indicating whether the given definition should replace an eventually already present definition with the same name. |