'宣言 Public Property CellMultiLine As Infragistics.Win.DefaultableBoolean
public Infragistics.Win.DefaultableBoolean CellMultiLine {get; set;}
このプロパティは、バンドの中の編集セルの複数行のテキスト、または指定されたオーバーライドによって制御されるグリッドの表示を制御します。Trueに設定すると、テキストがセルの領域内で折り返されます。行が自動的にサイズ変更されるように RowSizing プロパティを設定した場合は、テキストのすべての行が表示されるまで (または RowSizingAutoMaxLines プロパティで指定された行数に達するまで) 行の高さが拡張します。
CellMultiLine プロパティは、複数行の編集には適切ではありません。表示のみに使用してください。また、複数行モードへのセルの設定はデータマスキングを無効にすることに注意が必要です。マスクできるのは単一行のセルのみです (MaskInput および MaskDisplayMode プロパティを使用。)
Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.UltraWinGrid Private Sub Button24_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button24.Click ' When CellMultiline is set to true on a column, the UltraGrid will display ' multiline text and also allow the user to enter multiline text. If ' CellMultiline is set to false, any multiline text in cells will only display ' the first line. Dim column As UltraGridColumn = Me.UltraGrid1.DisplayLayout.Bands(0).Columns(0) ' Set the CellMultiline to true so the UltraGrid allows for multiline text ' in the column. column.CellMultiLine = DefaultableBoolean.True ' You can also set the VertScrollBar to true to show vertical scrollbar when ' a cell in the column is in edit mode. column.VertScrollBar = True End Sub
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinGrid; using System.Diagnostics; private void button24_Click(object sender, System.EventArgs e) { // When CellMultiline is set to true on a column, the UltraGrid will display // multiline text and also allow the user to enter multiline text. If // CellMultiline is set to false, any multiline text in cells will only display // the first line. UltraGridColumn column = this.ultraGrid1.DisplayLayout.Bands[0].Columns[0]; // Set the CellMultiline to true so the UltraGrid allows for multiline text // in the column. column.CellMultiLine = DefaultableBoolean.True; // You can also set the VertScrollBar to true to show vertical scrollbar when // a cell in the column is in edit mode. column.VertScrollBar = true; }