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;
}
}
}