コード例 #1
0
 public GDFCell(GDFRow row, RectangleF initCellBounds)
 {
     this._row = row;
     //Store page
     this._page = this._row.Builder.Manager.CurrentPage;
     //Set Bounds and Location
     this._page.Location = initCellBounds.Location;
     this._page.Bounds   = initCellBounds;
 }
コード例 #2
0
ファイル: GDFCell.cs プロジェクト: rxantos/tesv-snip
 public GDFCell(GDFRow row, RectangleF initCellBounds)
 {
     this._row = row;
     //Store page
     this._page = this._row.Builder.Manager.CurrentPage;
     //Set Bounds and Location
     this._page.Location = initCellBounds.Location;
     this._page.Bounds = initCellBounds;
 }
コード例 #3
0
 protected override IEnumerable <RTFBuilderBase> EnumerateCellsInternal(RTFRowDefinition rowDefinition, RTFCellDefinition[] cellDefinitions)
 {
     using (GDFRow row = new GDFRow(this, rowDefinition, cellDefinitions))
     {
         foreach (GDFCell cell in row)
         {
             using (cell)
             {
                 yield return(cell.Content);
             }
         }
     }
 }
コード例 #4
0
ファイル: GDFBuilder.cs プロジェクト: rxantos/tesv-snip
 protected override IEnumerable <RTFBuilderbase> EnumerateCellsInternal(RTFRowDefinition rowDefinition, RTFCellDefinition[] cellDefinitions)
 {
     using (GDFRow row = new GDFRow(this, rowDefinition, cellDefinitions))
     {
         foreach (GDFCell cell in row)
         {
             using (cell)
             {
                 yield return cell.Content;
             }
         }
     }
 }