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

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

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

			return rowProperties;
		}