Example #1
0
 public Number(NumberLevel level, string count, string from, string value,
               string format, string lang, string letterValue, string groupingSeparator, string groupingSize,
               XslVersion xslVer) : base(XslNodeType.Number, null, null, xslVer)
 {
     this.Level             = level;
     this.Count             = count;
     this.From              = from;
     this.Value             = value;
     this.Format            = format;
     this.Lang              = lang;
     this.LetterValue       = letterValue;
     this.GroupingSeparator = groupingSeparator;
     this.GroupingSize      = groupingSize;
 }
Example #2
0
 public static Number Number(NumberLevel level, string count, string from, string value,
                             string format, string lang, string letterValue, string groupingSeparator, string groupingSize,
                             XslVersion xslVer)
 {
     return(new Number(level, count, from, value, format, lang, letterValue, groupingSeparator, groupingSize, xslVer));
 }