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

@@ -1172,6 +1172,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _XLocation, "@XLocation");
}
}
private LazyLoad<float?> _RelXLocation;
public float? RelXLocation
{
get
{
return LazyLoad(ref _RelXLocation, "@RelXLocation");
}
}
private LazyLoad<int?> _CheckOffXtraLines;
public int? CheckOffXtraLines
{
@@ -2557,6 +2565,22 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _MaxRNOTable, "@MaxRNOTable");
}
}
private LazyLoad<bool> _RNOWidthSameAsHighParent;
public bool RNOWidthSameAsHighParent
{
get
{
return LazyLoad(ref _RNOWidthSameAsHighParent, "@RNOWidthSameAsHighParent");
}
}
private LazyLoad<float?> _SingleColumnRNOIndent;
public float? SingleColumnRNOIndent
{
get
{
return LazyLoad(ref _SingleColumnRNOIndent, "@SingleColumnRNOIndent");
}
}
private LazyLoad<string> _ColRTable;
public string ColRTable
{
@@ -4544,6 +4568,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _RNOIdentPrint, "TabData/@RNOIdent");
}
}
private LazyLoad<bool> _RNOExcludeMacros;
public bool RNOExcludeMacros
{
get
{
return LazyLoad(ref _RNOExcludeMacros, "TabData/@RNOExcludeMacros");
}
}
private LazyLoad<string> _Justify;
public string Justify
{
@@ -4568,6 +4600,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _IdentWidth, "TabData/@IdentWidth");
}
}
private LazyLoad<float?> _MacroTabAdjust;
public float? MacroTabAdjust
{
get
{
return LazyLoad(ref _MacroTabAdjust, "TabData/@MacroTabAdjust");
}
}
private VE_Font _Font;
public VE_Font Font
{