Exemplo n.º 1
0
 public HotSpot(double x, double y, XYUnitType xu, XYUnitType yu)
 {
     X      = x;
     Y      = y;
     XUnits = xu;
     YUnits = yu;
 }
Exemplo n.º 2
0
 private string ConvertXYUnits(XYUnitType? xyu)
 {
     switch (xyu)
     {
         case XYUnitType.InsetPixels:
             return "insetPixels";
         case XYUnitType.Pixels:
             return "pixels";
         case XYUnitType.Fraction:
         default:
             return "fraction";
     }
 }
Exemplo n.º 3
0
 public HotSpot(double x, double y, XYUnitType xu, XYUnitType yu)
 {
     X = x;
     Y = y;
     xUnits = xu;
     yUnits = yu;
 }