GrapeCity.Win.PluginInputMan アセンブリ > GrapeCity.Win.Spread.InputMan.CellType 名前空間 > GcTextBoxCellType クラス : MaxLengthUnit プロパティ |
'Declaration Public Property MaxLengthUnit As LengthUnit
'使用法 Dim instance As GcTextBoxCellType Dim value As LengthUnit instance.MaxLengthUnit = value value = instance.MaxLengthUnit
public LengthUnit MaxLengthUnit {get; set;}
GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType inputcell1 = new GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType();
inputcell1.MaxLengthUnit = GrapeCity.Win.Spread.InputMan.CellType.LengthUnit.Char;
inputcell1.MaxLength = 10;
fpSpread1.Sheets[0].Cells[1, 1].CellType = inputcell1;
Dim inputcell1 As New GrapeCity.Win.Spread.InputMan.CellType.GcTextBoxCellType inputcell1.MaxLengthUnit = GrapeCity.Win.Spread.InputMan.CellType.LengthUnit.Char inputcell1.MaxLength = 10 FpSpread1.Sheets(0).Cells(1, 1).CellType = inputcell1