Infragistics(R) NetAdvantage(R) Windows Forms
TileStateChanging Event
See Also  E-mail your feedback on this topic.
Infragistics.Win.Misc Namespace > UltraTilePanel Class : TileStateChanging Event

Occurs when the State of an UltraTile is going to change.

Syntax

Visual Basic (Declaration) 
Public Event TileStateChanging As TileStateChangingEventHandler
C# 
public event TileStateChangingEventHandler TileStateChanging

Event Data

The event handler receives an argument of type TileStateChangingEventArgs containing data related to this event. The following TileStateChangingEventArgs properties provide information specific to this event.

PropertyDescription
Cancel (Inherited from System.ComponentModel.CancelEventArgs)Gets or sets a value indicating whether the event should be canceled.
NewState Gets the previous state of the UltraTile before the state had changed.
ShouldAnimate Gets or sets the value indicating whether the UltraTile should animate changing state.
Tile (Inherited from Infragistics.Win.Misc.TileCancelEventArgs)Gets the UltraTile associated with the event.

See Also