Operand Type
Represents four different types of intel operands: register, memory, direct address, and immediate.
Union cases
| Union case | Description | 
            
                
              
              
             | 
          
            
  | 
        
            
                
              
               | 
          
            
  | 
        
            
                
              
               | 
          
            
  | 
        
            
                
              
                  Full Usage: 
                   
              OprMem(Register option, ScaledIndex option, Displacement option, OperandSize)
                  Parameters: 
 Register option
                    
                    Item2 : ScaledIndex option
                    
                    Item3 : Displacement option
                    
                    Item4 : OperandSize
                    
                     | 
          
            
  | 
        
            
                
              
              
             | 
          
            
  | 
        
Instance members
| Instance member | Description | 
            
                
              
              
                  Full Usage: 
                   
              this.IsLabel
                  Returns: bool
                  
                   | 
          
            
  | 
        
            
                
              
              
                  Full Usage: 
                   
              this.IsOprDirAddr
                  Returns: bool
                  
                   | 
          
            
  | 
        
            
                
              
              
                  Full Usage: 
                   
              this.IsOprImm
                  Returns: bool
                  
                   | 
          
            
  | 
        
            
                
              
              
                  Full Usage: 
                   
              this.IsOprMem
                  Returns: bool
                  
                   | 
          
            
  | 
        
            
                
              
              
                  Full Usage: 
                   
              this.IsOprReg
                  Returns: bool
                  
                   | 
          
            
  | 
        
            B2R2