2 using System.Collections.Generic;
4 using Seci.Definitions;
6 namespace Seci.Standard
15 public static String FilePath {
get {
return _filePath; } }
19 _filePath = Status.UserDetailsVI;
22 LabView.LabViewApp.LoadVI(_filePath,
true);
25 LabView.LabViewApp.StartVI(_filePath);
33 LabView.LabViewApp.ShowVI(_filePath);
41 LabView.LabViewApp.HideVI(_filePath);
54 vals = LabView.LabViewApp.GetValue(_filePath,
"RB Number");
60 if (vals != null && vals.Length > 0)
76 LabView.LabViewApp.SetValue(_filePath,
"RB Number", rb);
87 Object val = LabView.LabViewApp.GetRawValue(_filePath,
"Experimental Team");
89 return (String[,])val;
103 LabView.LabViewApp.SetRawValue(_filePath,
"Experimental Team", values);
static void HideVi()
Method for hiding the VI - it is hidden by default.
static void ShowVi()
Method for showing the VI - it is hidden by default.
static void SetRbNumber(String rb)
Method for settiing the RB number.
static String GetRbNumber()
Method for retrieving the RB number.
static String[,] GetUsers()
Method for retrieving the users associated with the current RB number.
static void SetUsers(String[,] values)
Method for updating the list of experimenters.
This class is a wrapper for the User Details VI.