Version

MaximumVisibleLargeTiles Property

Gets or sets the maximium number of visible UltraTile instances which can be in the Large state at a time.
Syntax
'Declaration
 
Public Property MaximumVisibleLargeTiles As Integer
public int MaximumVisibleLargeTiles {get; set;}

Property Value

The maximium number of UltraTile instances which can be in the Large state at a time.
Exceptions
ExceptionDescription
System.ArgumentOutOfRangeException The value assigned is less than zero.
Remarks

If putting a tile in the Large state causes the number of visible large tiles to exceed the MaximumVisibleLargeTiles value, the first large tile in the LargeTiles collection, or the earliest tile to be placed in the Large state, will be placed back in the Normal state.

Example
The following code demonstrates how to control the number and position of tiles in the Large state.

Imports System.Windows.Forms
Imports Infragistics.Win
Imports Infragistics.Win.Misc

' Allow for two tiles to be in the Large state at a time.
Me.UltraTilePanel1.MaximumVisibleLargeTiles = 2

' When there are multiple large tiles, they should be arranged horizontally.
Me.UltraTilePanel1.LargeTileOrientation = TileOrientation.Horizontal

' The large tile should be placed below the normal tiles.
Me.UltraTilePanel1.LargeTilePosition = LargeTilePosition.Bottom
using System.Windows.Forms;
using Infragistics.Win;
using Infragistics.Win.Misc;

// Allow for two tiles to be in the Large state at a time.
this.ultraTilePanel1.MaximumVisibleLargeTiles = 2;

// When there are multiple large tiles, they should be arranged horizontally.
this.ultraTilePanel1.LargeTileOrientation = TileOrientation.Horizontal;

// The large tile should be placed below the normal tiles.
this.ultraTilePanel1.LargeTilePosition = LargeTilePosition.Bottom;
Requirements

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

See Also