Add Logic to check for X-Y Plot type
This commit is contained in:
parent
2c4f1280ca
commit
2dfb1110a0
@ -538,6 +538,9 @@ namespace VEPROMS.CSLA.Library
|
|||||||
// if type is null, then set type to zero so that InsertROValue will put in "RO Not Found" for the value
|
// if type is null, then set type to zero so that InsertROValue will put in "RO Not Found" for the value
|
||||||
if (type == null)
|
if (type == null)
|
||||||
type = 0;
|
type = 0;
|
||||||
|
// If multiple return values includes X-Y Plot, check to see if it is an X-Y Plot
|
||||||
|
if ((type & 4) == 4 && val.StartsWith("<<G"))
|
||||||
|
type = 4;
|
||||||
string roid = lookup.GetROIDByAccPagID(sel.Text, spPrefix, igPrefix);
|
string roid = lookup.GetROIDByAccPagID(sel.Text, spPrefix, igPrefix);
|
||||||
if (roid != null)
|
if (roid != null)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user