AODL.Document.Content.Tables.TableBuilder.GetColumnCellWidth C# (CSharp) Method

GetColumnCellWidth() private static method

Gets the width of the column cell.
private static GetColumnCellWidth ( int columns, double tableWith ) : string
columns int The columns.
tableWith double The table with.
return string
		private static string GetColumnCellWidth(int columns, double tableWith)
		{
			double ccWidth							= (double)((tableWith/(double)columns));
			return ccWidth.ToString("F2").Replace(",",".");
		}
	}