B2022-047: Tables search – refresh data to allow search to find text in tables
This commit is contained in:
@@ -419,6 +419,24 @@ namespace VEPROMS.CSLA.Library
|
||||
OnPropertyChanged("Step_IncludeInTOC");
|
||||
}
|
||||
}
|
||||
public bool Step_FixedTblForSrch
|
||||
{
|
||||
get
|
||||
{
|
||||
string s = _Xp["Step", "FixedTblForSrch"];
|
||||
|
||||
if (s == string.Empty) return false;
|
||||
if (s == "True") return true;
|
||||
return false;
|
||||
}
|
||||
set
|
||||
{
|
||||
string s = _Xp["Step", "FixedTblForSrch"];
|
||||
if (value.ToString() == s) return;
|
||||
_Xp["Step", "FixedTblForSrch"] = value.ToString();
|
||||
OnPropertyChanged("Step_FixedTblForSrch");
|
||||
}
|
||||
}
|
||||
#region RO image sizing
|
||||
// if the RO image (figure) is resized, save it in the step config, not in the ROImageConfig. If stored in ROImageConfig
|
||||
// the size is set for ALL uses.
|
||||
|
Reference in New Issue
Block a user