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

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

Creates the cell properties.
private CreateCellProperties ( IStyle style, XmlNode propertyNode ) : CellProperties
style IStyle The style.
propertyNode System.Xml.XmlNode The property node.
Результат AODL.Document.Styles.Properties.CellProperties
		private CellProperties CreateCellProperties(IStyle style, XmlNode propertyNode)
		{
			CellProperties cellProperties		= new CellProperties(style as CellStyle);
			cellProperties.Node					= propertyNode;

			return cellProperties;
		}