Case プロパティは、列のテキストを指定した文字の種類で表示し、編集されるテキストの文字の種類を変更するかどうかを指定します。このプロパティは編集されたテキストの大文字と小文字を変更します。Case に 0 以外の値を設定すると、編集または入力するテキストは、すべて大文字またはすべて小文字のいずれかでデータベースに格納されます。テキストは指定した文字の種類で表示されますが、セルの値に対して変更が行われないかぎり、文字の種類を変更されたテキストがデータベースにコミットされることはありません。単にセルを編集モードにしただけの場合は、データの文字の種類が変更されることはありません。
Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.UltraWinGrid Private Sub Button7_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button7.Click Dim column As UltraGridColumn = Me.UltraGrid1.DisplayLayout.Bands(0).Columns("Region") column.Case = Infragistics.Win.UltraWinGrid.Case.Upper End Sub
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinGrid; using System.Diagnostics; private void button7_Click(object sender, System.EventArgs e) { UltraGridColumn column = this.ultraGrid1.DisplayLayout.Bands[0].Columns["Region"]; column.Case = Infragistics.Win.UltraWinGrid.Case.Upper; }