Declared the format variable TabPtsPerChar as a “float?” so that it can have a null value
Fixed the RTF commands for the OR, AND, THEN, and WHEN replacewords Added logic so that TabPtsPerChar is not added to a format if the value is NULL
This commit is contained in:
@@ -755,7 +755,7 @@ public struct StepSectionLayout
|
||||
public Int16 HLSWidthOVRD;
|
||||
public Int16 SubPaginationWght;
|
||||
public Int16 TextTitleAdjustment;
|
||||
public float TabPtsPerChar; // added for BGE
|
||||
public float? TabPtsPerChar; // added for BGE
|
||||
public string TableCenterPos; // string array with floats.
|
||||
public string LowerLimitDivisor; // pagination - should it be in print? - 16bit: quoted float
|
||||
public string NonLinkedStepNumber;
|
||||
@@ -4466,7 +4466,7 @@ namespace fmtxml
|
||||
if (success)
|
||||
{
|
||||
PushStepLists(subdata.StepData);
|
||||
DoStepInheritance(ref subdata.StepData,fname);
|
||||
DoStepInheritance(ref subdata.StepData, fname);
|
||||
AddPlantSpecificOverrideInheritance(fmtName, ref subdata);
|
||||
PopStepLists();
|
||||
}
|
||||
|
Reference in New Issue
Block a user