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

GetColumnCellWidth() private method

private GetColumnCellWidth ( int columns, double tableWith ) : string
columns int
tableWith double
return string
		private string GetColumnCellWidth(int columns, double tableWith)
		{
			double ccWidth	= (double)((tableWith/(double)columns));
			return ccWidth.ToString("F2").Replace(",",".");
		}