Beispiel #1
0
 public HitInfo(CssRun run, int x, int y)
 {
     this.hitObject     = run;
     this.hitObjectKind = HitObjectKind.Run;
     this.localX        = x;
     this.localY        = y;
 }
Beispiel #2
0
 internal HitInfo(CssLineBox lineBox, int x, int y)
 {
     this.hitObject     = lineBox;
     this.hitObjectKind = HitObjectKind.LineBox;
     this.localX        = x;
     this.localY        = y;
 }
Beispiel #3
0
 public HitInfo(CssBox box, int x, int y)
 {
     this.hitObject     = box;
     this.hitObjectKind = HitObjectKind.CssBox;
     this.localX        = x;
     this.localY        = y;
 }
Beispiel #4
0
 public HitInfo(CssRun run, int x, int y)
 {
     this.hitObject = run;
     this.hitObjectKind = HitObjectKind.Run;
     this.localX = x;
     this.localY = y;
 }
Beispiel #5
0
 internal HitInfo(CssLineBox lineBox, int x, int y)
 {
     this.hitObject = lineBox;
     this.hitObjectKind = HitObjectKind.LineBox;
     this.localX = x;
     this.localY = y;
 }
Beispiel #6
0
 public HitInfo(CssBox box, int x, int y)
 {
     this.hitObject = box;
     this.hitObjectKind = HitObjectKind.CssBox;
     this.localX = x;
     this.localY = y;
 }