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

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

Creates the table properties.
private CreateTableProperties ( IStyle style, XmlNode propertyNode ) : TableProperties
style IStyle The style.
propertyNode System.Xml.XmlNode The property node.
Результат AODL.Document.Styles.Properties.TableProperties
		private TableProperties CreateTableProperties(IStyle style, XmlNode propertyNode)
		{
			TableProperties tableProperties		= new TableProperties(style);
			tableProperties.Node				= propertyNode;

			return tableProperties;
		}