This commit is contained in:
@@ -394,7 +394,7 @@ namespace VEPROMS.CSLA.Library
|
||||
if (sd.Type == s && !sd.Inactive)
|
||||
{
|
||||
sds.Add(new StepDataRetval(sd.StepEditData.TypeMenu.MenuItem, Convert.ToInt32(sd.Index)));
|
||||
if (topType.Type == sd.Type) retval = cntitm;
|
||||
if (curType == sd.Type) retval = cntitm;
|
||||
cntitm++;
|
||||
break;
|
||||
}
|
||||
@@ -2485,6 +2485,14 @@ namespace VEPROMS.CSLA.Library
|
||||
return LazyLoad(ref _LineDrawingOption, "@LineDrawingOption");
|
||||
}
|
||||
}
|
||||
private LazyLoad<float?> _TabPtsPerChar;
|
||||
public float? TabPtsPerChar
|
||||
{
|
||||
get
|
||||
{
|
||||
return LazyLoad(ref _TabPtsPerChar, "@TabPtsPerChar");
|
||||
}
|
||||
}
|
||||
private LazyLoad<float?> _ColS;
|
||||
public float? ColS
|
||||
{
|
||||
@@ -4528,14 +4536,6 @@ namespace VEPROMS.CSLA.Library
|
||||
return LazyLoad(ref _Justify, "TabData/@Justify");
|
||||
}
|
||||
}
|
||||
//private LazyLoad<string> _CheckOff;
|
||||
//public string CheckOff
|
||||
//{
|
||||
// get
|
||||
// {
|
||||
// return LazyLoad(ref _CheckOff, "TabData/@CheckOff");
|
||||
// }
|
||||
//}
|
||||
private LazyLoad<bool> _UsePreviousStyle;
|
||||
public bool UsePreviousStyle
|
||||
{
|
||||
@@ -4573,6 +4573,14 @@ namespace VEPROMS.CSLA.Library
|
||||
return (_Bullet == null) ? _Bullet = new Bullet(base.XmlNode) : _Bullet;
|
||||
}
|
||||
}
|
||||
private LazyLoad<bool> _NoTrim;
|
||||
public bool NoTrim
|
||||
{
|
||||
get
|
||||
{
|
||||
return LazyLoad(ref _NoTrim, "TabData/@NoTrim");
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
#endregion
|
||||
|
Reference in New Issue
Block a user