バージョン

ReadOnly プロパティ (UltraCombo)

UltraComboが読み取り専用かどうかを指定します。
シンタックス
'宣言
 
Public Property ReadOnly As Boolean
public bool ReadOnly {get; set;}
解説

このプロパティが True に設定されている場合、ユーザーはコンボの値を変更できません。

使用例
Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid


    Private Sub UltraCombo1_InitializeLayout(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs) Handles UltraCombo1.InitializeLayout
        ' Prevent the user from modifying the contents of the UltraCombo by setting
        ' its ReadOnly property to true.
        Me.UltraCombo1.ReadOnly = True
    End Sub
using Infragistics.Shared;
using Infragistics.Win;
using Infragistics.Win.UltraWinGrid;
using System.Diagnostics;


		private void UltraCombo1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
		{
			// Prevent the user from modifying the contents of the UltraCombo by setting
			// its ReadOnly property to true.
			this.UltraCombo1.ReadOnly = true;
		}
参照