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

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

public PathStart ( ) : void
Результат void
      public void PathStart()
      {
        IntPtr exception = IntPtr.Zero;
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.DrawingWand_PathStart(Instance, out exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.DrawingWand_PathStart(Instance, out exception);
        #endif
        CheckException(exception);
      }
      public void Point(double x, double y)