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

CreateRowSerialCell() private method

create the row serial cell
private CreateRowSerialCell ( Table table, int SerialNum ) : Cell
table AODL.Document.Content.Tables.Table
SerialNum int
return AODL.Document.Content.Tables.Cell
		private Cell  CreateRowSerialCell(Table table,int SerialNum)
		{
			Cell   cell = new Cell (table.Document);
			cell.OfficeValueType ="string";
			Paragraph   paragraph = new Paragraph (m_document);
			string   content      = SerialNum.ToString ()+"ŠŠ";
			paragraph.TextContent .Add (new SimpleText (m_document,content));
			cell.Content .Add (paragraph);
			return cell;
		}