Example #1
0
        public void SetStatus(StatusValue.PosVal vl)
        {
            vObjectProperty pr = GetProperty("STATUS");

            if (pr == null)
            {
                SetProperty(new Status(this, vl));
            }
            else
            {
                ((Status)pr).SetStatus(vl);
            }
        }
Example #2
0
 public void SetStatus(StatusValue.PosVal vl)
 {
     ((StatusValue)(_val)).vl = vl;
 }
Example #3
0
 public Status(vObject owner, StatusValue.PosVal vl) : base("STATUS", owner)
 {
     _val = new StatusValue(vl);
 }