AODL.Document.Content.Tables.Cell.GetHtmlWidth C# (CSharp) Method

GetHtmlWidth() private method

Gets the width of the HTML.
private GetHtmlWidth ( ) : string
return string
		private string GetHtmlWidth()
		{
			int index		= 0;
			foreach(Cell cell in this.Row.Cells)
			{
				if (cell == this)
				{
					if (this.Row.Table.ColumnCollection != null)
						if (index <= this.Row.Table.ColumnCollection.Count)
					{
						Column column	= this.Row.Table.ColumnCollection[index];
						if (column != null)
							if (column.ColumnStyle.ColumnProperties.Width != null)
							return " width: "+column.ColumnStyle.ColumnProperties.Width.Replace(",",".")+"; ";

						
					}
				}
				index++;
			}
			return string.Empty;
		}