Gets or sets a value indicating whether MouseWheel scrolling is enabled. If true, scrolling the mouse wheel over the control results in vertical scrolling.
            
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public Property IsMouseWheelScrollEnabled As Boolean
             
        
            
            'Usage
 
Dim instance As PageView
Dim value As Boolean
 
instance.IsMouseWheelScrollEnabled = value
 
value = instance.IsMouseWheelScrollEnabled
             
        
            
            public bool IsMouseWheelScrollEnabled {get; set;}
             
        
            
            public: __property bool get_IsMouseWheelScrollEnabled();
public: __property void set_IsMouseWheelScrollEnabled( 
   bool value
);
             
        
            
            public:
property bool IsMouseWheelScrollEnabled {
   bool get();
   void set (    bool value);
}
             
        
             
        
            
            
            Property Value
System.Boolean value.
 
            
            
            
            
            
            
            
            
            
            
            
            See Also