Пример #1
0
        /// <summary>
        /// Sets the section title.
        /// </summary>
        void AddSectionTitle(string title)
        {
            Cell cell = new SectionCell()
            {
                Text = title
            };

            AddCell(cell);
        }
Пример #2
0
        /// <summary>
        /// Sets the section title.
        /// </summary>
        void AddSectionTitle(string title, Graphics.Color textColor)
        {
            Cell cell = new SectionCell()
            {
                Text      = title,
                TextColor = textColor
            };

            AddCell(cell);
        }