ImageMagick.MontageSettings.NativeMontageSettings.SetBorderWidth C# (CSharp) Method

SetBorderWidth() public method

public SetBorderWidth ( int value ) : void
value int
return void
      public void SetBorderWidth(int value)
      {
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        NativeMethods.X64.MontageSettings_SetBorderWidth(Instance, (UIntPtr)value);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        NativeMethods.X86.MontageSettings_SetBorderWidth(Instance, (UIntPtr)value);
        #endif
      }
      public void SetFillColor(MagickColor value)