AODL.Document.Import.OpenDocument.NodeProcessors.MainContentProcessor.CreateTableCellSpan C# (CSharp) Метод

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

Creates the table cell span.
private CreateTableCellSpan ( XmlNode node ) : AODL.Document.Content.Tables.CellSpan
node System.Xml.XmlNode The node.
Результат AODL.Document.Content.Tables.CellSpan
		private CellSpan CreateTableCellSpan(XmlNode node)
		{
			try
			{
				//Create a new CellSpan
				CellSpan cellSpan			= new CellSpan(this._document, node);
				
				//No need for a warnings or styles

				return cellSpan;
			}
			catch(Exception ex)
			{
				throw new AODLException("Exception while trying to create a Table CellSpan.", ex);
			}
		}