ImageMagick.DrawingWand.NativeDrawingWand.TextInterlineSpacing C# (CSharp) Method

TextInterlineSpacing() public method

public TextInterlineSpacing ( double value ) : void
value double
return void
      public void TextInterlineSpacing(double value)
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.DrawingWand_TextInterlineSpacing(Instance, value, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.DrawingWand_TextInterlineSpacing(Instance, value, out exception);
        #endif
        CheckException(exception);
      }
      public void TextInterwordSpacing(double value)