Go to the documentation of this file.00001 using System.Configuration;
00002
00003 namespace N2.Configuration
00004 {
00008 public class DefinitionElement : NamedElement
00009 {
00011 [ConfigurationProperty("type")]
00012 public string Type
00013 {
00014 get { return (string)base["type"]; }
00015 set { base["type"] = value; }
00016 }
00017
00019 [ConfigurationProperty("title")]
00020 public string Title
00021 {
00022 get { return (string)base["title"]; }
00023 set { base["title"] = value; }
00024 }
00025
00027 [ConfigurationProperty("sortOrder")]
00028 public int? SortOrder
00029 {
00030 get { return (int?)base["sortOrder"]; }
00031 set { base["sortOrder"] = value; }
00032 }
00033
00035 [ConfigurationProperty("toolTip")]
00036 public string ToolTip
00037 {
00038 get { return (string)base["toolTip"]; }
00039 set { base["toolTip"] = value; }
00040 }
00041
00043 [ConfigurationProperty("description")]
00044 public string Description
00045 {
00046 get { return (string)base["description"]; }
00047 set { base["description"] = value; }
00048 }
00049
00051 [ConfigurationProperty("editables")]
00052 public ContainableCollection Editables
00053 {
00054 get { return (ContainableCollection)base["editables"]; }
00055 set { base["editables"] = value; }
00056 }
00057
00059 [ConfigurationProperty("containers")]
00060 public ContainableCollection Containers
00061 {
00062 get { return (ContainableCollection)base["containers"]; }
00063 set { base["containers"] = value; }
00064 }
00065 }
00066 }