ClassScrollableVirtualRowsContainer
Represents a virtualized container for the virtual rows.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
public class ScrollableVirtualRowsContainer : VirtualizedStackContainer<int>, IDisposable, INotifyPropertyChanged, ICustomTypeDescriptor, ISupportSystemSkin, IStylableNode
Inheritance: objectDisposableObjectRadObjectRadElementLayoutPanelBaseVirtualizedContainer<int>VirtualizedStackContainer<int>ScrollableVirtualRowsContainer
Implements:
Inherited Members
Constructors
ScrollableVirtualRowsContainer()
Declaration
public ScrollableVirtualRowsContainer()
Properties
TableElement
Gets or sets the table element.
Declaration
public VirtualGridTableElement TableElement { get; set; }
Property Value
The table element.
Methods
ArrangeOverride(SizeF)
Arranges the RadElement to its final location. The element must call the Arrange method of each of its children.
Declaration
protected override SizeF ArrangeOverride(SizeF finalSize)
Parameters
finalSize
The size that is available for element.
Returns
The rectangle occupied by the element. Usually finalSize. Should you return different size, the Layout system will restart measuring and rearranging the items. That could lead to infinite recursion.
Overrides
Remarks
In this method call to the Arrange method of each child must be made.
CreateChildElements()
Called by the element when constructed. Allows inheritors to build the element tree.
Declaration
protected override void CreateChildElements()
Overrides
IsItemVisible(int)
Determines whether the specified item is visible.
MeasureElementCore(RadElement, SizeF)
Measures the element with the available size.
Declaration
protected override SizeF MeasureElementCore(RadElement element, SizeF availableSize)
Parameters
element
The element.
availableSize
Size of the available.
Returns
Overrides
UpdateElement(int, int)
Updates the element at concrete position
Declaration
protected override IVirtualizedElement<int> UpdateElement(int position, int data)
Parameters
position
The position.
data
The data.
Returns
Overrides