GetCellpadding() protected method

protected GetCellpadding ( ) : int
return int
Example #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.GetVerticalAlignment();
     this.backgroundColor   = mergeParent.GetBackgroundColor();
 }
Example #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();
 }
Example #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();
 }