Class GridExpandAnimation
Abstract class that defines methods used to animate rows in RadGridView.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI.VisualEffects
Assembly: Telerik.WinControls.GridView.dll
Syntax
public abstract class GridExpandAnimation
Constructors
GridExpandAnimation(GridTableElement)
Initializes a new instance of the GridExpandAnimation class.
Declaration
protected GridExpandAnimation(GridTableElement tableElement)
Parameters
GridTableElement
tableElement
The table element. |
Properties
IsAnimating
Gets or sets whether it is animating.
Declaration
public bool IsAnimating { get; protected set; }
Property Value
System.Boolean
The is animating. |
TableElement
Gets the table element.
Declaration
protected GridTableElement TableElement { get; }
Property Value
GridTableElement
The table element. |
Methods
Collapse(GridViewRowInfo, Single, Int32)
Starts collapse animation for group rows in RadGridView.
Declaration
public abstract void Collapse(GridViewRowInfo rowInfo, float maxOffset, int rowIndex)
Parameters
GridViewRowInfo
rowInfo
The desired GridViewRowInfo |
System.Single
maxOffset
the offset |
System.Int32
rowIndex
the row index |
Expand(GridViewRowInfo, Single, Int32)
Stats expand animation for group rows in RadGridView.
Declaration
public abstract void Expand(GridViewRowInfo info, float maxOffset, int rowIndex)
Parameters
GridViewRowInfo
info
The desired GridViewRowInfo |
System.Single
maxOffset
the offset |
System.Int32
rowIndex
the row index |
OnUpdateViewNeeded(EventArgs)
Raises the UpdateViewNeeded event.
Declaration
protected virtual void OnUpdateViewNeeded(EventArgs e)
Parameters
System.EventArgs
e
The System.EventArgs instance containing the event data. |
Events
UpdateViewNeeded
Occurs when an update of the view is needed.
Declaration
public event EventHandler UpdateViewNeeded
Event Type
System.EventHandler
|