AODL.ExternalExporter.PDF.Document.ContentConverter.TableLayoutInfo.GetTableWidth C# (CSharp) Метод

GetTableWidth() приватный Метод

Gets the width of the table.
private GetTableWidth ( Table table ) : void
table AODL.Document.Content.Tables.Table The table.
Результат void
		private void GetTableWidth(Table table)
		{
			try
			{
				if (table.Style != null 
					&& table.Style is TableStyle
					&& ((TableStyle)table.Style).TableProperties != null)
				{
					string strWidth = ((TableStyle)table.Style).TableProperties.Width;
					if (strWidth != null)
					{
						this._tableWidth = AODL.Document.Helper.SizeConverter.GetDoubleFromAnOfficeSizeValue(strWidth);
					}
				}
			}
			catch(Exception)
			{
				throw;
			}
		}
	}