GetRtfBackgroundColor() protected method

protected GetRtfBackgroundColor ( ) : RtfColor
return iTextSharp.text.rtf.style.RtfColor
Esempio n. 1
0
 /**
  * Merge this cell into the parent cell.
  *
  * @param mergeParent The RtfCell to merge with
  */
 protected internal void SetCellMergeChild(RtfCell mergeParent)
 {
     this.mergeType         = MERGE_VERT_CHILD;
     this.cellWidth         = mergeParent.GetCellWidth();
     this.cellRight         = mergeParent.GetCellRight();
     this.cellPadding       = mergeParent.GetCellpadding();
     this.borders           = mergeParent.GetBorders();
     this.verticalAlignment = mergeParent.VerticalAlignment;
     this.backgroundColor   = mergeParent.GetRtfBackgroundColor();
 }
Esempio n. 2
0
 /// <summary>
 /// Merge this cell into the parent cell.
 /// </summary>
 /// <param name="mergeParent">The RtfCell to merge with</param>
 protected internal void SetCellMergeChild(RtfCell mergeParent)
 {
     _mergeType        = MergeVertChild;
     _cellWidth        = mergeParent.GetCellWidth();
     _cellRight        = mergeParent.GetCellRight();
     _cellPadding      = mergeParent.GetCellpadding();
     _borders          = mergeParent.GetBorders();
     verticalAlignment = mergeParent.VerticalAlignment;
     _backgroundColor  = mergeParent.GetRtfBackgroundColor();
 }
Esempio n. 3
0
 /**
 * Merge this cell into the parent cell.
 *
 * @param mergeParent The RtfCell to merge with
 */
 protected internal void SetCellMergeChild(RtfCell mergeParent)
 {
     this.mergeType = MERGE_VERT_CHILD;
     this.cellWidth = mergeParent.GetCellWidth();
     this.cellRight = mergeParent.GetCellRight();
     this.cellPadding = mergeParent.GetCellpadding();
     this.borders = mergeParent.GetBorders();
     this.verticalAlignment = mergeParent.VerticalAlignment;
     this.backgroundColor = mergeParent.GetRtfBackgroundColor();
 }