예제 #1
0
        /// <summary>
        /// Render a row with content
        /// </summary>
        /// <param name="row"></param>
        /// <param name="content"></param>
        /// <returns></returns>
        public StaticRowStream Build(StaticRowConfig row, ICollection <RowContent> content)
        {
            var stream = new StaticRowStream(this, row, content);

            return(stream);
        }
예제 #2
0
 public StaticRowStream(StaticRowRenderer renderer, StaticRowConfig row, ICollection <RowContent> content)
 {
     _renderer = renderer;
     _row      = row;
     _content  = content;
 }
예제 #3
0
        /// <summary>
        /// Render an empty row
        /// </summary>
        /// <param name="row"></param>
        /// <returns></returns>
        public StaticRowStream Build(StaticRowConfig row)
        {
            var stream = new StaticRowStream(this, row, null);

            return(stream);
        }