RNO xoffset

RNO xoffset & “Improved Box with Paragraph” printing
“Improved Box with Paragraph” box location
fix possible null reference for determining auto indent of meta-sections
Calvert: using format flag IdentWidth in defining tab width if it is set in format file
This commit is contained in:
2014-11-11 15:45:11 +00:00
parent 80315d2657
commit 5cc512234e
7 changed files with 4 additions and 2 deletions

View File

@@ -183,6 +183,8 @@ namespace Volian.Print.Library
float? tPtPerChar1 = myparent.MyItemInfo.ActiveFormat.PlantFormat.FormatData.SectData.StepSectionData.StepSectionLayoutData.TabPtsPerChar;
if (tPtPerChar1 != null)
Width = (float)tPtPerChar1 * origTab.Length;
else if ((myparent.MyItemInfo.FormatStepData != null) && (myparent.MyItemInfo.FormatStepData.TabData.IdentWidth ?? 0) > 0)
Width = (float)myparent.MyItemInfo.FormatStepData.TabData.IdentWidth;
else
{
origTab = origTab + " ";