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.Model
Assembly:  BMXNET40 (in BMXNET40.dll)

Syntax

         
 C#  Visual Basic  Visual C++ 
public bool IsVisitChange { get; set; }
Public Property IsVisitChange As Boolean
public:
property bool IsVisitChange {
	bool get ();
	void set (bool value);
}

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();
                }
            }
            

See Also