バージョン

IsInView プロパティ (UltraExplorerBarItem)

UltraExplorerBarItem が実際にコントロール上に現れているかどうかを返します。
シンタックス
'宣言
 
Public ReadOnly Property IsInView As Boolean
public bool IsInView {get;}
解説

注: グループの一部でもコントロールの表示可能な領域内に含まれている場合、IsInView プロパティは True を返します。項目の UIElement プロパティは、項目がフル表示であるかどうかを決定するために使用できます。

使用例
Imports System.Diagnostics
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinExplorerBar


	Private Sub Button37_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button37.Click

		' Look for the first StateButton type Item that is Checked and in view and display its text.
		Dim group As UltraExplorerBarGroup

		For Each group In Me.ultraExplorerBar1.Groups
			Dim item As UltraExplorerBarItem

			For Each item In group.Items
				If (item.SettingsResolved.Style = ItemStyle.StateButton AndAlso _
				 item.Checked = True AndAlso _
				 item.IsInView = True) Then
					Debug.WriteLine("The first checked item that is in view is: '" + item.Text + "'")

					Exit For
				End If
			Next
		Next

	End Sub
using System.Diagnostics;
using Infragistics.Win;
using Infragistics.Win.UltraWinExplorerBar;


		private void button37_Click(object sender, System.EventArgs e)
		{
			// Look for the first StateButton type Item that is Checked and in view and display its text.
			foreach(UltraExplorerBarGroup group in this.ultraExplorerBar1.Groups)
			{
				foreach(UltraExplorerBarItem item in group.Items)
				{
					if (item.SettingsResolved.Style == ItemStyle.StateButton	&&
						item.Checked				== true						&&
						item.IsInView				== true)
					{
						Debug.WriteLine("The first checked item that is in view is: '" + item.Text + "'");

						break;
					}
				}
			}
		}
参照