예제 #1
0
 public PaintShopPatternLabel(double size, double left, double top, PaintShopAlignment horizontalAlignment, PaintShopAlignment verticalAlignment,
                              [NotNull] PaintShopFontSource font, double angle, PaintShopPatternColorReference colorRef, FontWeight weight, FontStyle style,
                              FontStretch stretch, int kerningAdjustment, [CanBeNull] string role)
     : base(size, left, top, horizontalAlignment, verticalAlignment, font, angle, colorRef, weight, style, stretch, kerningAdjustment)
 {
     Role = role ?? "pilot";
 }
예제 #2
0
 public PaintShopPatternNumber(double size, double left, double top, PaintShopAlignment horizontalAlignment, PaintShopAlignment verticalAlignment,
                               [NotNull] PaintShopFontSource font, double angle, PaintShopPatternColorReference colorRef, FontWeight weight, FontStyle style,
                               FontStretch stretch, int kerningAdjustment) : base(size, left, top, angle)
 {
     KerningAdjustment   = kerningAdjustment;
     HorizontalAlignment = horizontalAlignment;
     VerticalAlignment   = verticalAlignment;
     Font     = font;
     ColorRef = colorRef;
     Weight   = weight;
     Style    = style;
     Stretch  = stretch;
 }