ImageMagick.DrawingWand.NativeDrawingWand.TextUnderColor C# (CSharp) Метод

TextUnderColor() публичный Метод

public TextUnderColor ( MagickColor color ) : void
color MagickColor
Результат void
      public void TextUnderColor(MagickColor color)
      {
        using (INativeInstance colorNative = MagickColor.CreateInstance(color))
        {
          IntPtr exception = IntPtr.Zero;
          #if ANYCPU
          if (NativeLibrary.Is64Bit)
          #endif
          #if WIN64 || ANYCPU
          NativeMethods.X64.DrawingWand_TextUnderColor(Instance, colorNative.Instance, out exception);
          #endif
          #if ANYCPU
          else
          #endif
          #if !WIN64 || ANYCPU
          NativeMethods.X86.DrawingWand_TextUnderColor(Instance, colorNative.Instance, out exception);
          #endif
          CheckException(exception);
        }
      }
      public void Translation(double x, double y)