Example #1
0
 public REXView(REXView argRV)
 {
     this.ifChecked   = argRV.ifChecked;
     this.ifVisible   = argRV.ifVisible;
     this.Tag         = argRV.Tag;
     this.ifView      = argRV.ifView;
     this.Name        = argRV.Name;
     this.ViewElement = argRV.ViewElement;
 }
Example #2
0
 public void CopyMembersTo(REXView argRV)
 {
     argRV.ifChecked   = this.ifChecked;
     argRV.ifView      = this.ifView;
     argRV.ifVisible   = this.ifVisible;
     argRV.Name        = this.Name;
     argRV.Tag         = this.Tag;
     argRV.ViewElement = this.ViewElement;
 }
Example #3
0
 public void CopyDlgImportantMembFrom(REXView argRV)
 {
     this.ifChecked = argRV.ifChecked;
     this.ifVisible = argRV.ifVisible;
     this.Tag       = argRV.Tag;
 }
Example #4
0
 /// <summary>
 /// This function is an Comparison to sort views by name
 /// </summary>
 private static int CompareViewsByName(REXView arg1, REXView arg2)
 {
     return(arg1.Name.CompareTo(arg2.Name));
 }