Compare commits
5 Commits
db09db3cd0
...
F2025-012
| Author | SHA1 | Date | |
|---|---|---|---|
| 41cb078a94 | |||
| 0a5e4076e1 | |||
| c3534e21fa | |||
| 06159c6b68 | |||
| 22c14d169b |
Binary file not shown.
Binary file not shown.
@@ -547,6 +547,17 @@ namespace VEPROMS.CSLA.Library
|
|||||||
return LazyLoad(ref _AdjSectTitleLoc, "@AdjSectTitleLoc");
|
return LazyLoad(ref _AdjSectTitleLoc, "@AdjSectTitleLoc");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// this will add additional spacing between the Section Numbers and Titles
|
||||||
|
private LazyLoad<float?> _SectTitleOffsetOverride;
|
||||||
|
public float? SectTitleOffsetOverride
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return LazyLoad(ref _SectTitleOffsetOverride, "@SectTitleOffsetOverride");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#endregion AdjSectTitleLoc
|
#endregion AdjSectTitleLoc
|
||||||
|
|
||||||
#region ShowAlarmPointWindowInfo
|
#region ShowAlarmPointWindowInfo
|
||||||
|
|||||||
@@ -6199,6 +6199,12 @@ namespace Volian.Print.Library
|
|||||||
XOffset += (float)formatInfo.PlantFormat.FormatData.SectData.MetaSectionList[level].SecTitlePositionAdj;
|
XOffset += (float)formatInfo.PlantFormat.FormatData.SectData.MetaSectionList[level].SecTitlePositionAdj;
|
||||||
XOffset -= xMetaAdj;
|
XOffset -= xMetaAdj;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (itemInfo.MyDocStyle.SectTitleOffsetOverride != null)
|
||||||
|
{
|
||||||
|
XOffset += (float)itemInfo.MyDocStyle.SectTitleOffsetOverride;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (formatInfo.PlantFormat.FormatData.SectData.SectionHeader.Just == "PSCenter")
|
else if (formatInfo.PlantFormat.FormatData.SectData.SectionHeader.Just == "PSCenter")
|
||||||
|
|||||||
Reference in New Issue
Block a user