New to Telerik UI for WinFormsStart a free 30-day trial

Pinned Rows

Updated over 6 months ago

RadVirtualGrid rows can be pinned so that the rows appear anchored to the top or bottom of the grid. To pin a row you should use the SetRowPinPosition method where you just need to pass the row index and the desired pin position.

C#
            
radVirtualGrid1.VirtualGridElement.SetRowPinPosition(2, PinnedRowPosition.Top);

The result is that the row is pined bellow the filter row.

WinForms RadVirtualGrid Pinned Row

To unpin a row you just need to set its pin position to none.

C#
        
radVirtualGrid1.VirtualGridElement.SetRowPinPosition(2, PinnedRowPosition.None);

See Also

In this article
See Also
Not finding the help you need?
Contact Support