Added LandscapePageList property for processing VCSummer data

Added CenterLineX, CenterLineYTop and CenterLineYBottom properties for processing VCSummer data
Added FixedMessage property to support end message with CRLF characters
Added RelXLocation, RNOWidthSameAsHighParent, SingleColumnRNOIndent, RNOExcludeMacros and MacroTabAdjust properties for processing VCSummer data
This commit is contained in:
Rich
2013-06-11 18:44:03 +00:00
parent de21ab4c8f
commit 8f962bc778
2 changed files with 95 additions and 0 deletions

View File

@@ -106,6 +106,18 @@ namespace VEPROMS.CSLA.Library
}
}
#endregion
#region LandscapePageList
[Category("Miscellaneous")]
[Description("Should PageList be landscape")]
private LazyLoad<bool> _LandscapePageList;
public bool LandscapePageList
{
get
{
return LazyLoad(ref _LandscapePageList, "@LandscapePageList");
}
}
#endregion
#region IncludeInTOC
[Category("Miscellaneous")]
[Description("Include in Auto Table Of Contents")]
@@ -166,6 +178,42 @@ namespace VEPROMS.CSLA.Library
}
}
#endregion
#region CenterLine
//CenterLineX="261.9" CenterLineYTop="673.2" CenterLineYBottom="44.2"
private LazyLoad<float?> _CenterLineX;
[Category("CenterLine")]
[DisplayName("X Location")]
[Description("Distance from left side of page")]
public float? CenterLineX
{
get
{
return LazyLoad(ref _CenterLineX, "@CenterLineX");
}
}
private LazyLoad<float?> _CenterLineYTop;
[Category("CenterLine")]
[DisplayName("Y Top Location")]
[Description("starting vertical point of line")]
public float? CenterLineYTop
{
get
{
return LazyLoad(ref _CenterLineYTop, "@CenterLineYTop");
}
}
private LazyLoad<float?> _CenterLineYBottom;
[Category("CenterLine")]
[DisplayName("Y Bottom Location")]
[Description("ending vertical point of line")]
public float? CenterLineYBottom
{
get
{
return LazyLoad(ref _CenterLineYBottom, "@CenterLineYBottom");
}
}
#endregion
#region OptionalSectionContent
[Category("Miscellaneous")]
[Description("Section Optional Content")]
@@ -610,6 +658,13 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _Message, "@Message");
}
}
public string FixedMessage
{
get
{
return Message == null ? null : Message.Replace("\n","\r\n");
}
}
#endregion
}
#endregion