AODL.Utils.ContentMocker.GetParagraph C# (CSharp) Method

GetParagraph() private method

Gets paragraph from cell
private GetParagraph ( Cell cell ) : Paragraph
cell AODL.Document.Content.Tables.Cell
return AODL.Document.Content.Text.Paragraph
		private Paragraph GetParagraph(Cell cell)
		{
			if (cell.Content.Count == 0)
				return null;
			Paragraph p = cell.Content[0] as Paragraph;
			return p;
		}