Removed Debug Print
Moved code to add sections to Procedure parts Moved code to add steps to Section parts Moved code to add steps to Step parts Changed Debug Print Fixed a Format Flag conversion DontBreakOptEquipmentList Changed GetItemFont so that parent items would not be left in the cache Changed AddIncludedStepNumber to allow for ranges to sub levels. Added a array reference to StepDataList by index.
This commit is contained in:
@@ -3699,7 +3699,16 @@ namespace VEPROMS.CSLA.Library
|
||||
return null;
|
||||
}
|
||||
}
|
||||
public StepDataList(XmlNodeList xmlNodeList,IFormatOrFormatInfo myFormat) : base(xmlNodeList,myFormat) { }
|
||||
public StepData this[int index]
|
||||
{
|
||||
get
|
||||
{
|
||||
foreach (StepData stepData in this)
|
||||
if (stepData.Index == index) return stepData;
|
||||
return null;
|
||||
}
|
||||
}
|
||||
public StepDataList(XmlNodeList xmlNodeList, IFormatOrFormatInfo myFormat) : base(xmlNodeList, myFormat) { }
|
||||
private StepData _HLS;
|
||||
public StepData HLS
|
||||
{
|
||||
|
Reference in New Issue
Block a user