public TextFramework(String passedVertIcon, String passedHoriIcon, String passedCrosIcon, int passedTypeWidth, int passedMethodWidth)
 {
     this.udi = new UserDefinedIcons();
     this.udi.SetVertIcon(passedVertIcon);
     this.udi.SetHoriIcon(passedHoriIcon);
     this.udi.SetCrosIcon(passedCrosIcon);
     this.udi.SetTypeWidth(passedTypeWidth);
     this.udi.SetMethodWidth(passedMethodWidth);
 }
 public TextFramework(int passedTypeWidth, int passedMethodWidth)
 {
     this.udi = new UserDefinedIcons();
     this.udi.SetVertIcon(DisplayHeaders.GetOriginalVertIcon());
     this.udi.SetHoriIcon(DisplayHeaders.GetOriginalHoriIcon());
     this.udi.SetCrosIcon(DisplayHeaders.GetOriginalCrosIcon());
     this.udi.SetTypeWidth(passedTypeWidth);
     this.udi.SetMethodWidth(passedMethodWidth);
 }
 public TextFramework(String passedVertIcon, String passedHoriIcon, String passedCrosIcon)
 {
     this.udi = new UserDefinedIcons();
     this.udi.SetVertIcon(passedVertIcon);
     this.udi.SetHoriIcon(passedHoriIcon);
     this.udi.SetCrosIcon(passedCrosIcon);
     this.udi.SetTypeWidth(DisplayHeaders.GetOriginalTypeWidth());
     this.udi.SetMethodWidth(DisplayHeaders.GetOriginalMethodWidth());
 }