Exception | Description |
---|---|
System.ArgumentOutOfRangeException | The assigned value is less than zero. |
System.InvalidOperationException | The assigned value is a non-zero value which is less than MinimumRows. |
Imports System.Windows.Forms Imports Infragistics.Win Imports Infragistics.Win.Misc ' Make sure there are 4 columns of tiles regardless of how many tiles there ' actually are. Me.UltraTilePanel1.MinimumColumns = 4 Me.UltraTilePanel1.MaximumColumns = 4 ' Make sure there are 3 rows of tiles regardless of how many tiles there ' actually are. Me.UltraTilePanel1.MinimumRows = 3 Me.UltraTilePanel1.MaximumRows = 3
using System.Windows.Forms; using Infragistics.Win; using Infragistics.Win.Misc; // Make sure there are 4 columns of tiles regardless of how many tiles there // actually are. this.ultraTilePanel1.MinimumColumns = 4; this.ultraTilePanel1.MaximumColumns = 4; // Make sure there are 3 rows of tiles regardless of how many tiles there // actually are. this.ultraTilePanel1.MinimumRows = 3; this.ultraTilePanel1.MaximumRows = 3;
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