Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / FpSpread Class / UIVirtualization Property
Example


In This Topic
    UIVirtualization Property
    In This Topic
    Gets or sets whether to use UI virtualization.
    Syntax
    'Declaration
     
    
    Public Property UIVirtualization As Boolean
    'Usage
     
    
    Dim instance As FpSpread
    Dim value As Boolean
     
    instance.UIVirtualization = value
     
    value = instance.UIVirtualization
    public bool UIVirtualization {get; set;}
    Remarks

    This property displays the horizontal scrollbar and allows you to scroll so you can see all the column headers if the control is too narrow to display them all at once.  If you set the HorizontalScrollBarPolicy property to never, the scroll bar does not show up. The scroll bar shows up with as needed or always if delay scroll is true.

    This property can also be used to speed up client side performance if there are a lot of rows and columns (set the property to true) in Microsoft Internet Explorer.

    Example
    This example sets the UIVirtualization property.
    See Also