GridExpandAnimation
Class
Abstract class that defines methods used to animate rows in RadGridView.
Definition
Namespace:Telerik.WinControls.UI.VisualEffects
Assembly:Telerik.WinControls.GridView.dll
Syntax:
C#
public abstract class GridExpandAnimation
Inheritance: objectGridExpandAnimation
Derived Classes:
Constructors
Initializes a new instance of the GridExpandAnimation class.
C#
protected GridExpandAnimation(GridTableElement tableElement)
The table element.
Properties
Gets or sets whether it is animating.
C#
public bool IsAnimating { get; protected set; }
The is animating.
Gets the table element.
C#
protected GridTableElement TableElement { get; }
The table element.
Methods
Starts collapse animation for group rows in RadGridView.
C#
public abstract void Collapse(GridViewRowInfo rowInfo, float maxOffset, int rowIndex)
The desired GridViewRowInfo
maxOffsetfloatthe offset
rowIndexintthe row index
Stats expand animation for group rows in RadGridView.
C#
public abstract void Expand(GridViewRowInfo info, float maxOffset, int rowIndex)
The desired GridViewRowInfo
maxOffsetfloatthe offset
rowIndexintthe row index
Events
Occurs when an update of the view is needed.
C#
public event EventHandler UpdateViewNeeded