Initialize static variable containing the BASEall.xml format information
Added a static variable for the BASEall.xml format information Added parameters to allow a transition search in selected step elements. (B2015-055) Make symbol list available without first selecting a procedure set, fixed searching for symbols bug (B2014-057), fix for transition search by type (B2015-055),
This commit is contained in:
@@ -403,6 +403,20 @@ namespace VEPROMS.CSLA.Library
|
||||
return true;
|
||||
}
|
||||
}
|
||||
// return the base PROMS format (BASEall.xml)
|
||||
// this was but in for bug fix B2014-057 so that we can get to the symbol list when no DocVersion is selected (Search All Procedure Sets)
|
||||
private static PlantFormat _PROMSBaseFormat = null;
|
||||
public static PlantFormat PROMSBaseFormat
|
||||
{
|
||||
get
|
||||
{
|
||||
if (_PROMSBaseFormat == null)
|
||||
{
|
||||
_PROMSBaseFormat = FormatList.ToFormat("Default (base)").PlantFormat;
|
||||
}
|
||||
return _PROMSBaseFormat;
|
||||
}
|
||||
}
|
||||
public static FormatInfo Get(string name)
|
||||
{
|
||||
try
|
||||
|
Reference in New Issue
Block a user