Represents event data for the following events: ItemVisiblityStateChanging
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.UI.dll
Syntax:
C#
public class ItemVisiblityStateChangingEventArgs : CancelEventArgs
Inheritance: objectEventArgsCancelEventArgsItemVisiblityStateChangingEventArgs
Inherited Members
Constructors
Creats a new instance of the ItemVisiblityStateChangingEventArgs class.
C#
public ItemVisiblityStateChangingEventArgs(bool isExpanding, ChunkVisibilityState nextVisibilityState)
Indicates whether the item is being expanded or collapsed.
nextVisibilityStateChunkVisibilityStateThe new visibility state which will be used with the item.
Properties
Get whether the item is being expanded or collapsed.
C#
public bool IsExpanding { get; }
Gets the new visibility state to be used with the item.
C#
public ChunkVisibilityState NextVisibilityState { get; }