B2022-047: Tables search – refresh data to allow search to find text in tables

This commit is contained in:
2022-06-02 13:12:58 +00:00
parent d6d29a868a
commit fa5d78f844
7 changed files with 569 additions and 239 deletions

View File

@@ -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.