'Declaration Public Function SetState( _ ByVal newState As TileState, _ ByVal shouldAnimate As Boolean _ ) As Boolean
public bool SetState( TileState newState, bool shouldAnimate )
Exception | Description |
---|---|
System.ComponentModel.InvalidEnumArgumentException | newState is not a member of the TileState enumeration. |
System.InvalidOperationException | The UltraTile does not currently belong to an UltraTilePanel. |
Imports System.Windows.Forms Imports Infragistics.Win Imports Infragistics.Win.Misc ' Get the first tile in the UltraTilePanel Dim tile As UltraTile = Me.UltraTilePanel1.Tiles(0) ' If the first tile is not in the Large state, animte it changing to the Large state. If Not tile.State = TileState.Large Then tile.SetState(TileState.Large, True) End If
using System.Windows.Forms; using Infragistics.Win; using Infragistics.Win.Misc; // Get the first tile in the UltraTilePanel UltraTile tile = this.ultraTilePanel1.Tiles[ 0 ]; // If the first tile is not in the Large state, animte it changing to the Large state. if ( tile.State != TileState.Large ) tile.SetState( TileState.Large, true );
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2