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

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

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