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

Occurs when the UltraTile is about to be moved.

Syntax

Visual Basic (Declaration) 
Public Event Moving As TileMovingEventHandler
C# 
public event TileMovingEventHandler Moving

Event Data

The event handler receives an argument of type TileMovingEventArgs containing data related to this event. The following TileMovingEventArgs 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.
NewPosition Gets the new row and column index values within the owning UltraTilePanel where the UltraTile will be moved.
ShouldAnimate Gets or sets the value indicating whether the UltraTile should animate moving.
Tile (Inherited from Infragistics.Win.Misc.TileCancelEventArgs)Gets the UltraTile associated with the event.

See Also