Handle a star number which consists of a number with optional asterisk at the end.
Esempio n. 1
0
 /// <summary>
 /// Initialize a new instance of the StarSize class.
 /// </summary>
 /// <param name="starSize">Initial star sizing value.</param>
 public StarSize(string starSize)
 {
     _width  = new StarNumber();
     _height = new StarNumber();
     Value   = starSize;
 }
Esempio n. 2
0
 /// <summary>
 /// Initialize a new instance of the StarSize class.
 /// </summary>
 /// <param name="starSize">Initial star sizing value.</param>
 public StarSize(string starSize)
 {
     StarWidth  = new StarNumber();
     StarHeight = new StarNumber();
     Value      = starSize;
 }
Esempio n. 3
0
 /// <summary>
 /// Initialize a new instance of the StarSize class.
 /// </summary>
 /// <param name="starSize">Initial star sizing value.</param>
 public StarSize(string starSize)
 {
     _width = new StarNumber();
     _height = new StarNumber();
     Value = starSize;
 }