AODL.Document.Content.Charts.ChartBuilderHelper.CreateNullStringCell C# (CSharp) Method

CreateNullStringCell() private method

private CreateNullStringCell ( Table table ) : Cell
table AODL.Document.Content.Tables.Table
return AODL.Document.Content.Tables.Cell
		private Cell  CreateNullStringCell(Table table)
		{
			Cell  cell  = new Cell (table.Document);
			Paragraph   paragraph  = new Paragraph (m_document );
			cell.Content .Add (paragraph);
			
			return cell;
		}