PowerTools MultiRow for Windows Forms 8.0J
大文字/小文字の区別なくセル名を認識

テンプレートに配置したセルのセル名(Cell.Name プロパティ)は既定では大文字/小文字を区別して認識されますが、Template.AllowCellNameComparisonIgnoreCaseプロパティにTrueを設定すると、大文字/小文字を区別しないで認識できます。

Imports GrapeCity.Win.MultiRow

Dim TextBoxCell1 As New TextBoxCell()
TextBoxCell1.Name = "TextBoxCell1"
Dim Template1 As Template = Template.CreateGridTemplate(New Cell() {TextBoxCell1})
Template1.AllowCellNameComparisonIgnoreCase = True
GcMultiRow1.Template = Template1
GcMultiRow1.RowCount = 3

GcMultiRow1.Rows(0).Cells("TEXTBOXCELL1").Value = "ABC"GcMultiRow1.Rows(0).Cells("TEXTBOXCELL1").Style.BackColor = Color.Yellow
GcMultiRow1.Rows(0).Cells("TEXTBOXCELL1").Style.ForeColor = Color.Red
                        
using GrapeCity.Win.MultiRow;

TextBoxCell textBoxCell1 = new TextBoxCell();
textBoxCell1.Name = "textBoxCell1";

Template template1 = Template.CreateGridTemplate(new Cell[] { textBoxCell1 });
template1.AllowCellNameComparisonIgnoreCase = true;

gcMultiRow1.Template = template1;
gcMultiRow1.RowCount = 3;

gcMultiRow1.Rows[0].Cells["TEXTBOXCELL1"].Value = "ABC";
gcMultiRow1.Rows[0].Cells["TEXTBOXCELL1"].Style.BackColor = Color.Yellow;
gcMultiRow1.Rows[0].Cells["TEXTBOXCELL1"].Style.ForeColor = Color.Red;                            
参照

 

 


© 2008-2015 GrapeCity inc. All rights reserved.