Exception | Description |
---|---|
System.ComponentModel.InvalidEnumArgumentException | The value assigned is not a member of the TileState enumeration. |
When all visible UltraTiles in an UltraTilePanel are in the Normal state, all tiles will be the same size and will be arranged in a grid. They can be repositioned by the user as well.
If one or more visible UltraTiles are in the Large state, they will occupy the majority of the UltraTilePanel while the remaining Normal state tiles will occupy a smaller portion of the panel on one of the sides.
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