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