コード例 #1
0
ファイル: XSeriesElements.cs プロジェクト: t00/PdfSharpXps
        /// <summary>
        /// Adds a value to the XSeries.
        /// </summary>
        public XValue Add(string value)
        {
            XValue xValue = new XValue(value);

            Add(xValue);
            return(xValue);
        }
コード例 #2
0
 /// <summary>
 /// Adds a value to the XSeries.
 /// </summary>
 public XValue Add(string value)
 {
   XValue xValue = new XValue(value);
   Add(xValue);
   return xValue;
 }