コード例 #1
0
        public override void RemoveEnding()
        {
            ParagraphFormatInfo pfInfo = (ParagraphFormatInfo)FormatInfo;

            pfInfo.RemoveEnding();
            Area contentArea = LayoutInfo.ContentArea;

            contentArea.Height -= LayoutInfo.TrailingHeight;
        }
コード例 #2
0
        internal override void RemoveEnding()
        {
            ParagraphFormatInfo pfInfo = (ParagraphFormatInfo)this.FormatInfo;

            pfInfo.RemoveEnding();
            Area contentArea = this.LayoutInfo.ContentArea;

            contentArea.Height -= this.LayoutInfo.TrailingHeight;
        }
コード例 #3
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="mergeInfo"></param>
        /// <returns></returns>
        internal void Append(FormatInfo mergeInfo)
        {
            ParagraphFormatInfo formatInfo = (ParagraphFormatInfo)mergeInfo;

            _lineInfos.AddRange(formatInfo._lineInfos);
        }