Identifies the type of arithmetic operation (merge method) that is performed on the values of all
            intersecting pixels resulting from the merge.
            
            Syntax
            
            Members
| Member | Value | Description | 
| ADD | 0 | Img1 = Img1 + Img2.. | 
| ADD_SIGN_CENTERED | 7 | Img1 = Img1+ SC_Img2. | 
| AND | 4 | Img1 = Img1 & Img2. | 
| DIVIDE | 3 | Img1 = Img1 / Img2. | 
| MULT | 2 | Img1 = Img1 * Img2. | 
| NOT | 8 | Img1 = ~Img1. | 
| OR | 5 | Img1 = Img1 | Img2. | 
| OVER | 9 | Img1 = Img2. | 
| SUB | 1 | Img1 = Img1 - Img2. | 
| XOR | 6 | Img1 = Img1 ^ Img2. | 
 
            
            
            
            
            
            
            Inheritance Hierarchy
System.Object
   System.ValueType
      System.Enum
         ImageGear.Processing.ImGearMergeModes
 
            
            
            See Also