Exemple #1
0
 public Link(TextRegion hoverRegion, string fileName, TextLocation location)
 {
     this.hoverRegion = hoverRegion;
     this.fileName    = fileName;
     this.location    = location;
 }
Exemple #2
0
 public static TextLocation ToTextLocation(this TextRegion textRegion)
 {
     return(new TextLocation(textRegion.BeginColumn, textRegion.BeginLine));
 }