This commit is contained in:
Rich 2009-11-09 20:23:05 +00:00
parent 9909dcecf9
commit 57fc6fa1a7
2 changed files with 7 additions and 0 deletions

View File

@ -121,6 +121,7 @@ namespace VEPROMS.CSLA.Library
}
#endregion
#region SortingChildren
[NonSerialized]
public Csla.SortedBindingList<FolderInfo> _SortedChildFolders;
public Csla.SortedBindingList<FolderInfo> SortedChildFolders
{

View File

@ -863,6 +863,7 @@ namespace VEPROMS.CSLA.Library
}
#endregion
#region Ordinal CslaType and Tostring
[NonSerialized]
private int? _Ordinal;
public int Ordinal
{
@ -931,6 +932,7 @@ namespace VEPROMS.CSLA.Library
}
#endregion
#region ProcedureConfig
[NonSerialized]
private ProcedureConfig _ProcedureConfig = null;
public ProcedureConfig.PrintChangeBar PrintChangeBar
{
@ -1461,6 +1463,7 @@ namespace VEPROMS.CSLA.Library
}
#endregion
#region MetaTags - Tabs, Headers, Footers
[NonSerialized]
protected Tab _MyTab;
public Tab MyTab
{
@ -1474,6 +1477,7 @@ namespace VEPROMS.CSLA.Library
_MyTab = value;
}
}
[NonSerialized]
protected MetaTag _MyHeader;
public MetaTag MyHeader
{
@ -1484,6 +1488,7 @@ namespace VEPROMS.CSLA.Library
}
set { _MyHeader = value; }
}
[NonSerialized]
protected MetaTag _MyFooter;
public MetaTag MyFooter
{
@ -1494,6 +1499,7 @@ namespace VEPROMS.CSLA.Library
}
set { _MyFooter = value; }
}
[NonSerialized]
protected bool _TagsSetup = false;
public virtual void SetupTags()
{