In This Topic
GdPicture14.WPF Namespace / ThumbnailEx Class / IsDeferredScrollingEnabled Property

IsDeferredScrollingEnabled Property

In This Topic
Whether deferred scrolling is enabled. If set to true, visual state will not be updated until the scrollbar mouse capture is released. Default value is false.
Syntax
'Declaration
 
Public Property IsDeferredScrollingEnabled As Boolean
public bool IsDeferredScrollingEnabled {get; set;}
public read-write property IsDeferredScrollingEnabled: Boolean; 
public function get,set IsDeferredScrollingEnabled : boolean
public: __property bool get_IsDeferredScrollingEnabled();
public: __property void set_IsDeferredScrollingEnabled( 
   bool value
);
public:
property bool IsDeferredScrollingEnabled {
   bool get();
   void set (    bool value);
}
Remarks
Displaying a large number of items may cause performance issues. In this case, it might be useful to use deferred scrolling.
See Also