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

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

public TextKerning ( double value ) : void
value double
Результат void
      public void TextKerning(double value)
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.DrawingWand_TextKerning(Instance, value, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.DrawingWand_TextKerning(Instance, value, out exception);
        #endif
        CheckException(exception);
      }
      public void TextUnderColor(MagickColor color)