2 using System.Collections.Generic;
4 using System.Xml.Serialization;
26 public String FilePath {
get {
return _filepath; } set { _filepath = value; } }
27 public String PanelName {
get {
return _filepath; } set { _filepath = value; } }
28 public Boolean ShowPanel {
get {
return _showPanel; } set { _showPanel = value; } }
29 public Boolean StartRunning {
get {
return _startRunning; } set { _startRunning = value; } }
30 public int DelayAfter {
get {
return _delayAfter; } set { _delayAfter = value; } }
31 public int[] Bounds {
get {
return _bounds; } set { _bounds = value; } }
32 [XmlIgnore]
public int[] OldBounds {
get {
return _oldBounds; } set { _oldBounds = value; } }
33 public String Group {
get {
return _group; } set { _group = value; } }
34 public String OwningComponent {
get {
return _owningComponent; } set { _owningComponent = value; } }
54 _startRunning = start;
65 return MemberwiseClone();
LabViewPanelInfo(String filePath, Boolean show, Boolean start)
Recommended Constructor.
object Clone()
Produces a shallow copy of the class.
This class contains all the information about a LabVIEW VI that needs to be saved in the configuratio...
LabViewPanelInfo()
Default Constructor - used for deserialisation.