数値型セル(NumericUpDownCell)の値を桁区切り表示する方法はSystem.Windows.Forms.NumericUpDownコントロールと同じです。NumericUpDownCell.ThousandsSeparatorプロパティをTrueに設定すると、現在のオペレーティングシステムのカルチャにしたがって適切な桁区切り記号で数値が桁区切りで表示されます。
|
デザイナによる設定
- 行(Row)に数値型セルを追加する。(例:numericUpDownCell1)
- numericUpDownCell1を選択し、プロパティウィンドウでnumericUpDownCell1.ThousandsSeparatorプロパティをTrueに設定する。
コーディングによる設定
Imports GrapeCity.Win.MultiRow Dim NumericUpDownCell1 As New NumericUpDownCell() NumericUpDownCell1.Name = "NumericUpDownCell1" NumericUpDownCell1.ThousandsSeparator = True NumericUpDownCell1.Value = 100000 GcMultiRow1.Template = Template.CreateGridTemplate(New Cell() { NumericUpDownCell1 }) GcMultiRow1.RowCount = 10
using GrapeCity.Win.MultiRow; NumericUpDownCell numericUpDownCell1 = new NumericUpDownCell(); numericUpDownCell1.Name = "numericUpDownCell1"; numericUpDownCell1.ThousandsSeparator = true; numericUpDownCell1.Value = 100000; gcMultiRow1.Template = Template.CreateGridTemplate(new Cell[] { numericUpDownCell1 }); gcMultiRow1.RowCount = 10;