BMXNET 4.0 Developer API
Answer if the visit had changed. When the patient changes and a visit had been selected, the
visit will change to null.
Namespace:
IndianHealthService.BMXNet.ModelAssembly: BMXNET40 (in BMXNET40.dll)
Syntax
Examples
In the following example, the first tab of a notebook is selected whenever the patient changes.
Copy Code | |
---|---|
void Context_Changed(object sender, ContextChangedArgs e) { if (e.IsPatientChange) { this.SelectedIndex = 1; this.RefreshAll(); } } |