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:
@@ -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
|
||||
{
|
||||
|
Reference in New Issue
Block a user