SECI  1
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events
LVString.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections;
3 using System.Collections.Generic;
4 using System.Text;
5 
6 namespace Seci.LabView.Controls
7 {
12  {
14  public LvString(String name, SerialisableList<int> indices)
15  {
16  _name = name;
17 
18  if (indices != null)
19  {
20  _clusterIndices = (Seci.SerialisableList<int>)indices.Clone();
21  }
22  }
23 
28  public override String GetNameAndType()
29  {
30  return _name + " (String)";
31  }
32 
33  public override String GetControlType()
34  {
35  return "STRING";
36  }
37 
38  }
39 }
This class inherits from LVControl class and is specialised for String controls.
Definition: LVString.cs:11
override String GetNameAndType()
Overriden method which return the name and type of the control.
Definition: LVString.cs:28
LvString(String name, SerialisableList< int > indices)
Contructor.
Definition: LVString.cs:14
override String GetControlType()
Definition: LVString.cs:33
This class is the abstract base class of the objects used to store the VI control information...
Definition: LVControl.cs:12