ImageMagick.ConnectedComponent.NativeConnectedComponent.GetWidth C# (CSharp) Method

GetWidth() public static method

public static GetWidth ( IntPtr instance ) : int
instance System.IntPtr
return int
      public static int GetWidth(IntPtr instance)
      {
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        return (int)NativeMethods.X64.ConnectedComponent_GetWidth(instance);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        return (int)NativeMethods.X86.ConnectedComponent_GetWidth(instance);
        #endif
      }
      public static int GetX(IntPtr instance)