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

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

public TextAlignment ( TextAlignment value ) : void
value TextAlignment
Результат void
      public void TextAlignment(TextAlignment value)
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.DrawingWand_TextAlignment(Instance, (UIntPtr)value, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.DrawingWand_TextAlignment(Instance, (UIntPtr)value, out exception);
        #endif
        CheckException(exception);
      }
      public void TextAntialias(bool isEnabled)