AODL.Document.Content.Tables.TableBuilder.GetColumnCellWidth C# (CSharp) 메소드

GetColumnCellWidth() 개인적인 정적인 메소드

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