PowerTools MultiRow for Windows Forms 8.0J
数値の桁区切り表示


数値型セル(NumericUpDownCell)の値を桁区切り表示する方法はSystem.Windows.Forms.NumericUpDownコントロールと同じです。NumericUpDownCell.ThousandsSeparatorプロパティをTrueに設定すると、現在のオペレーティングシステムのカルチャにしたがって適切な桁区切り記号で数値が桁区切りで表示されます。

  • NumericUpDownCell.Style.Formatプロパティは使用できません。

デザイナによる設定
  1. 行(Row)に数値型セルを追加する。(例:numericUpDownCell1)
  2. 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;

   
参照

 

 


© 2008-2015 GrapeCity inc. All rights reserved.