NumericUpDown()

  • Thread starter Thread starter sakshi mittal
  • Start date Start date
S

sakshi mittal

Guest
I have a windows form and i have declared an object of NumericUpDown()

this._nudHeight = new System.Windows.Forms.NumericUpDown();


can you explain me the meaning of code given below, according to it 10,000 is the max. val and 0 is the min val, but what other two zeros represent?

this._nudHeight.Maximum = new decimal(new int[] {
10000,
0,
0,
0});

Continue reading...
 


Write your reply...
Back
Top