FNP: Component List on document style & Bottom continue message location fix
FNP: Component List moved to document style
This commit is contained in:
parent
da8999727c
commit
1415128986
@ -284,6 +284,18 @@ namespace VEPROMS.CSLA.Library
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
#region ComponentList
|
||||||
|
[Category("Miscellaneous")]
|
||||||
|
[Description("Component List")]
|
||||||
|
private LazyLoad<bool> _ComponentList;
|
||||||
|
public bool ComponentList
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return LazyLoad(ref _ComponentList, "@ComponentList");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endregion
|
||||||
#region pagestyle
|
#region pagestyle
|
||||||
private PageStyle _pagestyle;
|
private PageStyle _pagestyle;
|
||||||
[Category("Miscellaneous")]
|
[Category("Miscellaneous")]
|
||||||
@ -619,6 +631,14 @@ namespace VEPROMS.CSLA.Library
|
|||||||
return LazyLoad<E_ContBottomLoc>(ref _Location, "@Location");
|
return LazyLoad<E_ContBottomLoc>(ref _Location, "@Location");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
private LazyLoad<bool> _NoOverrideSpace;
|
||||||
|
public bool NoOverrideSpace
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return LazyLoad(ref _NoOverrideSpace, "@NoOverrideSpace");
|
||||||
|
}
|
||||||
|
}
|
||||||
#endregion
|
#endregion
|
||||||
#region Message
|
#region Message
|
||||||
private LazyLoad<string> _Message;
|
private LazyLoad<string> _Message;
|
||||||
|
@ -179,14 +179,6 @@ namespace VEPROMS.CSLA.Library
|
|||||||
return LazyLoad(ref _Name, "@Name");
|
return LazyLoad(ref _Name, "@Name");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private LazyLoad<bool> _ComponentTableFormat;
|
|
||||||
public bool ComponentTableFormat
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return LazyLoad(ref _ComponentTableFormat, "@ComponentTableFormat");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// TPL represents Templates which are sizes of columns for 'table' type data. If the format
|
// TPL represents Templates which are sizes of columns for 'table' type data. If the format
|
||||||
// has the 'UseSmartTemplate' format flag, this table will have starting location & widths, and
|
// has the 'UseSmartTemplate' format flag, this table will have starting location & widths, and
|
||||||
// other data for the listed step types. Data from this table overrides width data as specified
|
// other data for the listed step types. Data from this table overrides width data as specified
|
||||||
|
Loading…
x
Reference in New Issue
Block a user